码迷,mamicode.com
首页 > 其他好文 > 详细

微博热榜

时间:2020-03-21 18:10:42      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:tree   pat   from   use   amp   form   技术   int   pre   

import requests
from lxml import etree
url="https://s.weibo.com/top/summary?Refer=top_hot&topnav=1&wvr=6"
header={User-Agent:Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36}
def main():
    html=etree.HTML(requests.get(url,headers=header).text)
    rank=html.xpath(//td[@class="td-01 ranktop"]/text())[0:10]
    affair=html.xpath(//td[@class="td-02"]/a/text())[0:10]
    view = html.xpath(//td[@class="td-02"]/span/text())[0:10]
    top=affair[0]
    affair=affair[1:]
    print({0:<10}\t{1:<40}.format("top",top))
    for i in range(0, len(affair)):
        print("{0:<10}\t{1:{3}<30}\t{2:{3}>20}".format(rank[i],affair[i],view[i],chr(12288)))
main()

技术图片

微博热榜

标签:tree   pat   from   use   amp   form   技术   int   pre   

原文地址:https://www.cnblogs.com/syzka/p/12540524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!