首页 > 编程语言 > 详细

python 爬虫 伪装

时间:2018-04-25 16:45:01      阅读:1159      评论:0      收藏:0      [点我收藏+]
#coding=utf-8
import 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")
headers = {"User-Agent":‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36‘}
proxies = {‘https‘:"114.215.107.94:60443",‘http‘:"211.147.67.150:80"}
requests_view(requests.get("http://www.spbeen.com/tool/request_info/",headers=headers,proxies=proxies))

  

python 爬虫 伪装

原文:https://www.cnblogs.com/php-linux/p/8945324.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!