温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Python使用赤舞代理的socks5采集实例

发布时间:2020-08-09 21:35:48 来源:网络 阅读:360 作者:zj41342626 栏目:大数据

#Python使用赤舞代理的socks5采集实例

转载:http://helpserver.chiwudaili.com/detail.aspx?id=a73406e4bdcc01ae615b649bf994bfb5

#################################################################################
import json
from time import sleep
import requests
#################################################################################
def MyRequestGet(url,decode,proxyIPAndPort):
print("MyRequestGet({0},{1},{2})IN".format(url,decode,proxyIPAndPort))
headers = {'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'}
rel = "";
if (len(proxyIPAndPort)>0):
proxies = {'http': 'socks5://ip:port','https':'socks5://ip:port'}
proxies['http']="socks5://{0}".format(proxyIPAndPort)
proxies['https']="socks5://{0}".format(proxyIPAndPort)
#print(proxies)
response = requests.get(url, proxies=proxies)
rel = response.content.decode(decode);
else:
response = requests.get(url)
rel = response.content.decode(decode);
print("MyRequestGet()OUT:{0}".format(rel))
return rel
#################################################################################
def MyGetPorxyIPAndPortFromChiWuDaiLi(phoneNumber,password):
rel = "";
while (True):
try:
path = 'http://mainserver.chiwudaili.com:8000/api/GetProxyIPsAndPorts.ashx?';
param = 'UserPhoneNumber={0}&UserPassword={1}&Count=1'.format(phoneNumber,password)
url = "{0}{1}".format(path,param)
stringJson = MyRequestGet(url,'utf-8',"")
objectJson = json.loads(stringJson)
if (objectJson['Code'] == 0):
if (objectJson['Data']['State'] == 0):
for index,value in enumerate(objectJson['Data']['IPs']):
rel = "{0}:{1}".format(value['IP'],value['Port'])
return rel;
else:
print(objectJson['Data']['Error'])
sleep(5);
else:
print(objectJson['Message'])
sleep(5);
except Exception as err:
print(err)
sleep(1);
return rel;
#################################################################################
def MyMain(phoneNumber,password):
print ("MyMain() IN");
while (True):
#url = 'http://2018.ip138.com/ic.asp';decode='gb2312';
url = 'http://helpserver.chiwudaili.com/';decode='utf-8';
#url = 'https://www.baidu.com/';decode='utf-8';
proxyIPAndPort = MyGetPorxyIPAndPortFromChiWuDaiLi(phoneNumber,password)
try:
while (True):
if (len(proxyIPAndPort)>0):
result = MyRequestGet(url,decode,proxyIPAndPort);
print(result)
else:
print('Get Proxy IP And Port Failed!')
sleep(1);
except Exception as err:
print(err)
finally:
print('do nothing')
sleep(1);
print ("MyMain() OUT");
#################################################################################
#MyMain('您手机号码','密码')
MyMain('13000000000','000000')
#################################################################################

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI