Python 代理服务器
Python 代理服务器
代理服务器用于通过另一台服务器浏览到某些网站,以便浏览保持匿名。它也可以用来绕过特定IP地址的阻止。
我们通过传递代理服务器地址作为参数,使用urllib模块中的urlopen方法访问网站。
示例在下面的示例中,使用代理地址访问网站twitter.com进行匿名访问。OK的响应状态证明已成功通过代理服务器访问。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.yapf.com # Date : 2020-08-25 import urllib URL = 'http://www.xntutor.com' PROXY_ADDRESS = "202.54.11.6:8088" if __name__ == '__main__': resp = urllib.urlopen(URL, proxies = {"http" : PROXY_ADDRESS}) print "Proxy server returns response headers: %s " %resp.headers
当运行上面的程序时,得到类似以下输出:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.yapf.com # Date : 2020-08-25 Proxy server returns response headers: cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 content-length: 185960 content-type: text/html;charset=utf-8 date: Mon, 02 Jul 2019 02:06:19 GMT expires: Tue, 31 Mar 1981 05:00:00 GMT last-modified: Mon, 02 Jul 2019 02:06:19 GMT pragma: no-cache server: tsa_n set-cookie: fm=0; Expires=Mon, 02 Jul 2019 02:06:10 GMT; Path=/; Domain=.twitter.com; Secure; HTTPOnly set-cookie: ................ x-xss-protection: 1; mode=block; report=http://xntutor.com/i/xss_report
相关文章
- 使用Python Beautiful Soup解析HTML内容的方法
- 在Python里面调用Golang代码的方法
- Python异步之怎么保护任务免于取消
- Python反射机制怎么应用
- 如何使用Python点云生成3D网格
- python如何实现简易的学生信息管理系统
- Python迭代器如何创建使用
- Python中Matplotlib图像如何添加标签
- Python如何利用手势识别实现贪吃蛇游戏
- Python网络爬虫之如何获取网络数据
- python操作Excel神器openpyxl如何使用
- Python HTTP请求
- Python 自定义HTTP请求
- Python 请求状态代码
- Python 连接重用
- Python Web表单提交
- Python 数据库和SQL
- Python 电子邮件
- Python SMTP
- Python列出目录