mediawiki
mediawiki copied to clipboard
MediaWiki API wrapper in python http://pymediawiki.readthedocs.io/en/latest/
It will be really helpful to be able to interact with the revisions of pages in some applications. Any plans on adding it in some capacity anytime soon?
It's a awesome library, but I think an async version would benefit a lot of people. Currently, to use it in a async program the run_in_executor loop is needed. Is...
Hi there, thanks for this library. I have an IRC bot that fetches content when it sees certain URLs. It would be nice to pull the correct article for a...
Hiya, I was wondering if this project has a place for wrapping some file-related information. Now, I forked this repository and [added wrapping for a given file's URL](/AdingoD/mediawiki/tree/mediawiki-file), but I...
`.search("a", results=1000)` will lead to 500 results since 500 is the maximum. However, a `continue` parameter is supported ("When more results are available, use this to continue"), which I suppose...
Very nice package. I am trying to write a script that for a tv series extract the content of the season episodes: ``` from mediawiki import MediaWiki wikipedia = MediaWiki()...
Hi there, thanks for making this great library. I have a question about the summary of a Wikipedia page: Take [https://en.wikipedia.org/wiki/South_Bruce_Peninsula](https://en.wikipedia.org/wiki/South_Bruce_Peninsula) as example, when I try to get its summary...
Hi there, it seems the `.sections` and `.table_of_contents` attributes (not 100% sure if for all German pages) return empty results. E.g.: ``` In [1]: from mediawiki import MediaWiki In [2]:...
This pull request adds support for [HTTP authentication](https://docs.python-requests.org/en/latest/user/authentication/), by adding an `http_auth` argument and property to `MediaWiki`. Whatever you pass/set as `http_auth` gets passed to Requests as an `auth` parameter,...