Python 通过函数运行代码的奇怪行为

Python 通过函数运行代码的奇怪行为,python,api,python-requests,mediawiki,Python,Api,Python Requests,Mediawiki,我有一个从维基媒体api获取文章文本的函数 def get_content(lang, title): url = "https://"+ lang +".wikipedia.org/w/api.php" params={'action':'query', 'format':'json', 'titles': title, 'prop': 'linkshere','redirects':'true','prop':'extracts','exlimit':'ma

我有一个从维基媒体api获取文章文本的函数

def get_content(lang, title):
    url = "https://"+ lang +".wikipedia.org/w/api.php"
    params={'action':'query', 'format':'json', 'titles': title, 'prop': 
        'linkshere','redirects':'true','prop':'extracts','exlimit':'max','explaintext':'true'}
    response = requests.get(url=url,params=params).json()
    content = response["query"]["pages"]
    content = six.next(six.itervalues(content))['extract']
    return content
但是,当我调用此函数时,会出现错误:

Traceback (most recent call last):
File "/home/klux/anaconda3/lib/python3.5/site-
packages/requests/adapters.py", line 423, in send
timeout=timeout
File "/home/klux/anaconda3/lib/python3.5/site-
packages/requests/packages/urllib3/connectionpool.py", line 640,
in urlopen
_stacktrace=sys.exc_info()[2])
File "/home/klux/anaconda3/lib/python3.5/site-
packages/requests/packages/urllib3/util/retry.py", line 287, in i
ncrement
raise MaxRetryError(_pool, url, error or ResponseError(cause))
requests.packages.urllib3.exceptions.MaxRetryError: 
HTTPSConnectionPool(host='xn--mesut%20zil-57a.wikipedia.org',
port=443): Max retries exceeded with url: /w/api.php?
exlimit=max&titles=en&action=query&format=json&prop=extract
s&redirects=true&explaintext=true (Caused by 
NewConnectionError('<requests.packages.urllib3.connection.VerifiedHT
TPSConnection object at 0x7f7a5e74c0b8>: Failed to establish a new 
connection: [Errno -2] Name or service not kno
wn',))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "get_data.py", line 165, in <module>
print(get_content('Mesut Özil','en'))
File "get_data.py", line 147, in get_content
response = request_get_data(url=url,params=params).json()
File "/home/klux/anaconda3/lib/python3.5/site-
packages/requests/api.py", line 70, in get
return request('get', url, params=params, **kwargs)
File "/home/klux/anaconda3/lib/python3.5/site-
packages/requests/api.py", line 56, in request
return session.request(method=method, url=url, **kwargs)
File "/home/klux/anaconda3/lib/python3.5/site-
packages/requests/sessions.py", line 475, in request
resp = self.send(prep, **send_kwargs)
File "/home/klux/anaconda3/lib/python3.5/site-
packages/requests/sessions.py", line 596, in send
r = adapter.send(request, **kwargs)
File "/home/klux/anaconda3/lib/python3.5/site-
packages/requests/adapters.py", line 487, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='xn--
mesut%20zil-57a.wikipedia.org', port=443): Max
retries exceeded with url: /w/api.php?
exlimit=max&titles=en&action=query&format=json
&prop=extracts&redirects=true&explaintext=true (Caused by 
NewConnectionError
('<requests.packages.urllib3.connection.VerifiedHTTPSConnection o
bject at 0x7f7a5e74c0b8>: Failed to establish a new connection: [Errno 
-2] Name or service not known',))
输出:

Mesut Özil (German pronunciation: [ˈmeːzut ˈøːzil], Turkish: [meˈsut 
ˈøzil]; born 15 October 1988) is a German fo
otballer who plays for English club Arsenal and the German national 
team...

我不知道如何解决这个奇怪的行为,我尝试用visual studio代码调试,
get\u content
函数中的
response
变量变为
undefined
。有人能解决这种情况吗?

您的函数声明为:

def get_content(lang, title):
但我在你的回溯中看到:

print(get_content('Mesut Özil','en'))

我相当肯定没有
https://Mesut Özil.wikipedia.org

Opps,这个愚蠢的错误让我头疼,非常感谢。不幸的是,您的代码片段缺少重现或解决问题所需的上下文。在目前的状态下,不可能写出一个建设性的解决方案,因此这个问题对其他读者没有用处。我投票结束这个问题。如果选择改进,问题将自动添加到重新打开队列。有关更多信息,请参阅以下两页:
print(get_content('Mesut Özil','en'))