当页面肯定存在时运行此代码错误,因为我使用python维基百科库来获取页面。
import wikipedia
wikiResults = wikipedia.search("megaman 64")
result = wikiResults[0]
page = wikipedia.page(result)
返回错误:
wikipedia.exceptions.PageError: Page id "mega man legends video games" does
not match any pages. Try another id!
我做错了什么?
由于
编辑:提供MCVE
答案 0 :(得分:1)
我通过查看github解决的问题修复了这个错误。
当运行以下行时,自动建议会自动设置为true
page = wikipedia.page(result)
禁用此功能可解决此问题:
page = wikipedia.page(result, auto_suggest=False)