Tiny MediaWiki API client library from the author of the MW API
Project description
pywikiapi: A Tiny Python MediaWiki API Lib
This is a minimalistic library that handles some of the core MediaWiki API complexities like handling continuations, login, errors, and warnings, but does not impose any additional abstraction layers, allowing you to use every single feature of the MW API directly in the most optimal way.
The library was written by the original author of the MediaWiki API itself, and tries to address some of the mistakes of the original API design... Some things should have been done differently. :)
from pywikiapi import wikipedia
# Connect to English Wikipedia
site = wikipedia('en')
# Iterate over all query results as they are returned
# from the server, handling continuations automatically.
# (pages whose title begins with "New York-New Jersey")
for r in site.query(list='allpages', apprefix='New York-New Jersey'):
for page in r.allpages:
print(page.title)
# Iterate over two pages, getting the page info and the list of links for each of the two pages. Each page will be yielded as a separate result.
for page in site.query_pages(titles=['Test', 'API'], prop=['links', 'info'], pllimit=10):
print(page.title)
print(', '.join([l.title for l in page.links]))
print()
site.login('username', 'password')
site('edit', text=...)
Installation
You can install the library from PyPI:
pip install pywikiapi
or
python3 -m pip install pywikiapi
The library requires Python 3.6+
How to use
- Create a
Site
object, either directly or with thewikipedia
helper function. - Use
site.query(...)
orsite.iterate(action, ...)
for all iteration-related API calls. The API will handle all the continuation logic internally. - Use
site.query_pages(...)
to get one page object at a time from the action=query. - Use
site('query', meta='siteinfo')
to access any API action, passing any additional params as keys.
Data formats
The library will properly handle all of the basic parameter types:
- Numbers and strings will be passed as is
- Boolean
True
will be passed as"1"
. None
and booleanFalse
will not be included.- Datetimes will be formatted with
isoformat()
. Warning: make sure datetime is in UTC timezone. - Lists will be converted into a pipe
|
-separated string of values.
Development
To test, run python3 setup.py test -q
or use ./test.sh
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pywikiapi-5.0.0.tar.gz
.
File metadata
- Download URL: pywikiapi-5.0.0.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f5441d5e732587b2807daf2072a26a6a6318aee7c89b8d425bed3a0e26c15e9 |
|
MD5 | 4bd8093bd41c771fd7298dbe84e35554 |
|
BLAKE2b-256 | c818329eb73ad8f84b90915178478a1c598cd1ef243402e50cbadb6083f119f8 |
File details
Details for the file pywikiapi-5.0.0-py3-none-any.whl
.
File metadata
- Download URL: pywikiapi-5.0.0-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 209d209ecd96bfdd5845c228c929d5a430c5aa98b266b86c6a544fe0b90fb229 |
|
MD5 | cbe835b6bce4295e3a1d90e342b99083 |
|
BLAKE2b-256 | 7b9dbdaf407c2d559ed51fc1bdd1836c04321635c0c078499532564c01ba92f7 |