如何在请求中设置接口IP?

时间:2015-11-01 18:44:24

标签: python python-2.7

我的服务器有3个IP,如何在我的python请求中设置接口IP?

我目前的剧本:

import requests

headers = {
               'User-Agent'  :  'Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/20100101 Firefox/12.0',
               'Accept-Language'  :  'en-en,en;q=0.8,en-us;q=0.5,en;q=0.3',
               'Connection'  :  'keep-alive',
               'RequestTarget': 'AJAXService',
               'Origin'      :  'http://m.site.com',
               'Content-Type': 'application/x-www-form-urlencoded',
               'Accept': '*/*',
               'Referer': 'http://m.site.com/'
               }

cookies = {
    'ASP.NET_SessionId': 'py5beylwcovqwmikg0tputgn',
    'lng': '4'
    }

r = requests.get("http://httpbin.org/get", cookies=cookies, headers=headers)

print r.text

但是这个脚本只使用默认IP,但我每次都需要更改它。

0 个答案:

没有答案