代码:
import urllib
from urllib import request
from bs4 import BeautifulSoup
import re
url='http://quote.eastmoney.com/center/BKList.html#notion_0_0?sortRule=0'
html=urllib.request.urlopen(url).read()
html=html.decode("GBK")
soup=BeautifulSoup(html)
x=soup.find_all("p",{"class":"mod-datas"})
但是只显示了标签没有内容。。
实际的源代码是:
中间大量数据怎么提呢?
參考http://www.cnblogs.com/goosee...
直接再寫 x.table 就拿到了