We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to access page with title 'Ranchi', API returns page for 'Ranch':
>>> import wikipedia >>> wikipedia.page('Ranchi') <WikipediaPage 'Ranch'>
Is there any way to force API to return page for exact title passed?
Or should I be using wikipedia.WikipediaPage() instead of wikipedia.page()?
wikipedia.WikipediaPage()
wikipedia.page()
>>> wikipedia.WikipediaPage(title='Ranchi') <WikipediaPage 'Ranchi'>
The text was updated successfully, but these errors were encountered:
Set auto_suggest = False while calling wikipedia.page, .It returns page object according to the parameter provided #266
auto_suggest = False
wikipedia.page
Sorry, something went wrong.
No branches or pull requests
When I try to access page with title 'Ranchi', API returns page for 'Ranch':
Is there any way to force API to return page for exact title passed?
Or should I be using
wikipedia.WikipediaPage()
instead ofwikipedia.page()
?The text was updated successfully, but these errors were encountered: