你再掐我试试 发表于 2020-5-10 10:13:02

有关于requests_html的爬虫问题

在学习爬虫的时候,我碰到一段代码。输出的结果我看不懂,不知道要如何才能提取信息。请教各位,感谢!
from requests_html import HTMLSession
session = HTMLSession()

links = ['http://stock.finance.sina.com.cn/usstock/quotes/aapl.html', \
         'http://stock.finance.sina.com.cn/usstock/quotes/bidu.html', \
         'http://stock.finance.sina.com.cn/usstock/quotes/msft.html']

for link in links:
    r = session.get(link)
    r.html.render()
    price = r.html.find('#hqPrice', first=True)
    print(price)

输出的结果如下:
<Element 'div' class=('hq_now', 'up') id='hqPrice' style='color: silver;'>
<Element 'div' class=('hq_now', 'up') id='hqPrice' style=''>
<Element 'div' class=('hq_now', 'up') id='hqPrice' style=''>

qiuyouzhi 发表于 2020-5-10 10:27:46

返回的应该是是一个Element对象,Element
应该有一些方法可以提取数据,你百度搜搜。
页: [1]
查看完整版本: 有关于requests_html的爬虫问题