Urlopen() 代理关键字不存在?
Urlopen() proxies keyword doesn't exist?
当我使用下面的代码时,returns出现以下错误:
import urllib.request
print(urllib.request.urlopen(input(), proxies={
"http": "37.26.86.206",
"https": "37.26.86.206"
}))
returns
Traceback (most recent call last):
File "[path]", line 2, in <module>
print(urllib.request.urlopen(input(), proxies={
TypeError: urlopen() got an unexpected keyword argument 'proxies'
然而,这被用于多个答案here。
这种方法只是过时了,还是我的代码有缺陷?
注意:此处包含所有代码。
原来它在 Python 3.5 中被删除了
谢谢大家的帮助!
当我使用下面的代码时,returns出现以下错误:
import urllib.request
print(urllib.request.urlopen(input(), proxies={
"http": "37.26.86.206",
"https": "37.26.86.206"
}))
returns
Traceback (most recent call last):
File "[path]", line 2, in <module>
print(urllib.request.urlopen(input(), proxies={
TypeError: urlopen() got an unexpected keyword argument 'proxies'
然而,这被用于多个答案here。 这种方法只是过时了,还是我的代码有缺陷? 注意:此处包含所有代码。
原来它在 Python 3.5 中被删除了 谢谢大家的帮助!