html - Python2 BeautifulSoup 提取网页中的表格数据及连接
问题描述
网址:http://quote.eastmoney.com/ce...要做的是提取网页中的表格数据(如:板块名称,及相应链接下的所有个股,依然是个表格)

暂时只写了这些代码:import urllib2from bs4 import BeautifulSoup
url=’http://quote.eastmoney.com/ce...’
req=urllib2.Request.(url)page=urllib2.urlopen(req)
soup=BeautifulSoup(page)table = soup.find('table')
但是table里面没有内容,也就是完全没找到,这是怎么回事啊。po是小白,希望大神们可以多多指教,谢谢!
问题解答
回答1:因为是异步加载,数据在这里http://nufm.dfcfw.com/EM_Fina...
# coding:utf-8import requestsr = requests.get(’http://nufm.dfcfw.com/EM_Finance2014NumericApplication/JS.aspx?type=CT&cmd=C._BKGN&sty=FPGBKI&st=c&sr=-1&p=1&ps=5000&token=7bc05d0d4c3c22ef9fca8c2a912d779c&v=0.12043042036331286’)data = [_.decode(’utf-8’).split(’,’) for _ in eval(r.text)]url = ’http://quote.eastmoney.com/center/list.html#28003{}_0_2’lst = [(url.format(_[1].replace(’BK0’, ’’)), _[2]) for _ in data]print lst
相关文章:
1. Java。比较字符串时忽略重音2. node.js - 使用mongoose的cursor的问题3. javascript - nodemailer连接超时,怎么解决?4. docker api 开发的端口怎么获取?5. 请教python编码风格和异常处理问题6. 老师,flex-shrink: 1; 按视频操作,不会自动缩放7. utf-8 - python在windows命令行下生成文件乱码问题,如何解决?8. mysql - Access denied for user ’ODBC’@’localhost’ (using password: NO)9. cookies - python用cookie登录网站失败10. PHP中的$this代表当前的类还是方法?

网公网安备