码迷,mamicode.com
首页 > 编程语言 > 详细

python爬虫--打开爬取页面

时间:2018-04-26 14:38:54      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:打开   div   class   highlight   encode   页面   open   new   requests   

def requests_view(response):
    import webbrowser
    requests_url = response.url
    base_url = ‘<head><base href="%s">‘ %(requests_url)
    base_url = base_url.encode(‘utf-8‘)
    content = response.content.replace(b"<head>",base_url)
    tem_html = open(‘tmp.html‘,‘wb‘)
    tem_html.write(content)
    tem_html.close()
    webbrowser.open_new_tab("tmp.html")

  

python爬虫--打开爬取页面

标签:打开   div   class   highlight   encode   页面   open   new   requests   

原文地址:https://www.cnblogs.com/php-linux/p/8952022.html

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