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

work in while

时间:2020-03-04 00:13:06      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:text   break   ext   tor   www   next   self   html   sts   

url='http://www.baidu.com'
while True:
    resp=requests.get(url).content.decode()
    selector=etree.HTML(resp)
    self.parse_data(selector)

    next_url=''.join(selector.xpath("//div[@class='next']/text()"))
    if next_url:
        url=next_url
    else:
        break

work in while

标签:text   break   ext   tor   www   next   self   html   sts   

原文地址:https://www.cnblogs.com/hankleo/p/12405611.html

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