#北京新发地-->http://www.xinfadi.com.cn/
import re,requests,csvfrom bs4 import BeautifulSoup
url='http://www.xinfadi.com.cn/marketanalysis/0/list/0.shtml' #最大值(0-16843)resp=requests.get(url)#解析数据 1将数据交给bs4
page=BeautifulSoup(resp.text,'html.parser') #指定HTML解析器
table=page.find('table',attrs={'class':'hq_table'},recursive=True) #返回的类型为bs4.element.Tag,这个是bs的基本类型
print(table)
table1=table.find_all--》错误点,table是list()
到这一步无法再继续了,find_all无法对bs4.element.Tag的table查找,看来有些标准文档也是这样写,网上的视频也是这样,无法对table进行表格的解析
python 小白求助 ,已经卡了很久了,我也不知道是什么原因,特来求助。
import re,requests,csvfrom bs4 import BeautifulSoup
url='http://www.xinfadi.com.cn/marketanalysis/0/list/0.shtml' #最大值(0-16843)resp=requests.get(url)#解析数据 1将数据交给bs4
page=BeautifulSoup(resp.text,'html.parser') #指定HTML解析器
table=page.find('table',attrs={'class':'hq_table'},recursive=True) #返回的类型为bs4.element.Tag,这个是bs的基本类型
print(table)
table1=table.find_all--》错误点,table是list()
到这一步无法再继续了,find_all无法对bs4.element.Tag的table查找,看来有些标准文档也是这样写,网上的视频也是这样,无法对table进行表格的解析
python 小白求助 ,已经卡了很久了,我也不知道是什么原因,特来求助。