Posted in Python onJanuary 14, 2015
首先,你得下载SocksiPy这个.解压出来之后里面会有一个socks.py文件.然后你可以把这个文件复制到python安装目录里面的Lib\site-packages中.或者把这个文件复制到程序所在的目录中.
然后就可以再程序中使用socket代理来编写程序了.
下面是示例代码
import socks import socket
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5,"127.0.0.1",8088)
socket.socket =socks.socksocket import urllib2
urllib2.urlopen('http://www.baidu.com').read()
原文:为python设置socket代理
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
详解Python的Django框架中的templates设置
May 11
Python
Python中super关键字用法实例分析
May 28
Python
python转换字符串为摩尔斯电码的方法
Jul 06
Python
python实现mysql的单引号字符串过滤方法
Nov 14
Python
django的ORM操作 删除和编辑实现详解
Jul 24
Python
Python爬取智联招聘数据分析师岗位相关信息的方法
Aug 13
Python
python hashlib加密实现代码
Oct 17
Python
Pytorch to(device)用法
Jan 08
Python
python三引号如何输入
Jul 06
Python
PyTorch中clone()、detach()及相关扩展详解
Dec 09
Python
django中websocket的具体使用
Jan 22
Python
asyncio异步编程之Task对象详解
Mar 13
Python
Reply on: @reply_date@
@reply_contents@