代理服务器

Posted 纯情

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代理服务器相关的知识,希望对你有一定的参考价值。

代理网址 http://www.xicidaili.com

urllib.request.ProxyHandler({"http":端口})

//代理操作

urllib.request.build_opener(代理名,urllib.request,HTTPHandler)

 

import urllib.request

//代理模块都request下
def use_proxy(url,duan):

//用函数对代理简单操作
file=urllib.request.ProxyHandler({"http":duan})
tom=urllib.request.build_opener(file,urllib.request.HTTPHandler)
urllib.request.install_opener(tom)
date=urllib.request.urlopen(url).read().decode("utf-8","ignore")

//把爬取值解码为utf-8格式
return date
url="http://www.baidu.com"
duan="119.28.194.66:8888"
wang=use_proxy(url,duan)
print(len(wang))

//操作完毕











以上是关于代理服务器的主要内容,如果未能解决你的问题,请参考以下文章

正向代理和反向代理

什么是代理服务器,为什么叫做“代理“?好处是什么,如何在C#程序中链接到代理服务器?

构建Squid代理服务器-传统代理透明代理反向代理

什么是代理?代理有什么作用?

图解正向代理反向代理透明代理

怎样设置代理服务器