大佬们,求助我这个为什么运行失败啊,帮我修正代码
发表在Python图书答疑
2021-10-20 悬赏:20 学分
《Python编程入门指南》第22章 巡店宝(企业商品运营利器)
是否精华
是
否
版块置顶:
是
否
import requests
from lxml import etree
import time
url='https://s.weibo.com/top/summary?Refer=top_hot&topnav=1&wvr='
header={'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'}
resp = requests.get (url,headers=header)
resp1 = resp.content.decode(encoding='utf-8',errors='ignore')
resp2=etree.HTML(resp1)
title = resp2.xpath('//*[@id="pl_top_realtimehot"]/table/tbody/tr/td/a/text()')
print (time.strftime("%F,%R")+'微博热搜\n')
for i in range(51):
print (' '.join([title[i]]),'\n')
time.sleep(1)
首页上一页 1 下一页尾页 2 条记录 1/1页