我完全不知道我做错了什么,因为对我来说它看起来和所有的例子都是一样的,所谓的“解决方案”。
但它在创建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)