Posted in Python onJuly 25, 2019
爬虫需要,一个机器多个口,一个口多个ip,为轮询这些ip
demo
#coding=utf-8 import requests,sys,socket from requests_toolbelt.adapters import source reload(sys) sys.setdefaultencoding('utf-8') s = requests.Session() new_source = source.SourceAddressAdapter('192.168.4.2') s.mount('http://', new_source) s.mount('https://', new_source) print s.get('http://xxx.xxx.xxx.xxx:8091/')
需要安装第三方模块requests_toolbelt
pip install requests_toolbelt
Done
以上这篇python requests指定出口ip的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
python requests指定出口ip的例子
- Author -
清霄声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@