beautifulsoup
已收录文章:2篇
-
最近总被智联招聘广发骚扰,烦死个人了简直。索性点进去看了看爬虫工程师现在市场需求到底怎么样了?发展前景如何?看完了之后感觉目前还不错,根据北京来看职位需求还是蛮多的,薪479 收藏
-
#encoding:utf-8import urllib2from bs4 import BeautifulSoupwebsite = "http://caipiao.163.com/order/jczq-hunhe/#from=leftnav"page = urllib2.urlopen(website)soup = BeautifulSoup(page)for incident in soup('td'): print incident得到类似于以下221 收藏