使用代理的Python请求不起作用

时间:2015-08-25 18:18:46

标签: python python-2.7 python-requests http-proxy

我完全不知道我做错了什么,因为对我来说它看起来和所有的例子都是一样的,所谓的“解决方案”。

但它在创建get请求时失败,需要一段时间,所以我相信它可能正在尝试。

我正在尝试使用代理来更改请求的IP。

代码:

    self.uri = uri

    proxies = {'http' : 'http://10.0.0.1:8080',
                'https': 'https://10.0.0.1:4444'}

    self.request = requests.get(uri, proxies=proxies)

    # initializing the list where your reviews will be stored
    self._reviews_list_dict = []

    # getting the html object from the uri provided
    html_soup_obj = BeautifulSoup(self.request.content)

0 个答案:

没有答案