python提取网页中表格数据_Python2 BeautifulSoup 提取网页中的表格数据及连接
网址:http://quote.eastmoney.com/ce…要做的是提取网页中的表格数据(如:板块名称,及相应链接下的所有个股,依然是个表格)暂时只写了这些代码:import urllib2from bs4 import BeautifulSoupurl=’http://quote.eastmoney.com/ce…’req=urllib2.Request.(url)page=urllib2...