在豆瓣上看到Programming Collective Intelligence这边书,介绍我就不做了,链接在此,有兴趣的同学可以去看看介绍和评论吧。中文翻译有点怪:集体智慧编程,反正我单看中文书名是不会想到里面的内容是关于人工智能和机器学习的。
学校图书馆没有中文版的,借来英文的,慢慢看。 里面的代码是用python,正好加强下python的学习,准备在这里整理下里面用到库。
一:Beautiful Soup 这是用python写的html&xml的解释器,使用十分简单。 下面代码中获取左边Google订阅地址 - >>> import urllib2
-
>>> from BeautifulSoup import BeautifulSoup
-
>>> c=urllib2.urlopen('http://blog.chinaunix.net/space.php?uid=8537791&do=blog&id=151564')
- >>> soup=BeautifulSoup(c.read())
- >>> links=soup('a')
- >>> links[32]['href']
- u'http://fusion.google.com/add?feedurl=http://home.chinaunix.com/rss.php?uid=8537791'
|