mwclient 0.10.0-2 source package in Ubuntu
Changelog
mwclient (0.10.0-2) unstable; urgency=medium * Add upstream tests * add pybuild_name in d/rules -- HÃ¥vard Flaget Aasen <email address hidden> Wed, 20 Nov 2019 09:44:41 +0100
Upload details
- Uploaded by:
- Debian Python Modules Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Modules Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Focal | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
mwclient_0.10.0-2.dsc | 2.1 KiB | 55d8b1acc8b8bc230ceec1fa855002a71c1d4bac49582ddaaaed3c93cd7e04d6 |
mwclient_0.10.0.orig.tar.gz | 33.5 KiB | c3f1598a5f75fb80e9b8373f6574042208358aed81470fc2178a8ae7474069af |
mwclient_0.10.0-2.debian.tar.xz | 3.4 KiB | 5f789920687621c2265c3985c57b2313ae1b09d1af822c86418693b54b03d5c0 |
Available diffs
- diff from 0.8.7-1 to 0.10.0-2 (15.9 KiB)
No changes file available.
Binary packages built by this source
- python3-mwclient: MediaWiki API client in Python
mwclient is a lightweight Python client library to the MediaWiki API
which provides access to most API functionality. It works with Python
2.7, 3.3 and above, and supports MediaWiki 1.16 and above. For
functions not available in the current MediaWiki, a
MediaWikiVersionError is raised.
.
Most properties and generators accept the same parameters as the API,
without their two-letter prefix. Exceptions to this rule:
.
* Image.imageinfo is the imageinfo of the latest image. Earlier
versions can be fetched using imagehistory()
* Site.all*: parameter [ap]from renamed to start
* categorymembers is implemented as Category.members
* deletedrevs is deletedrevisions
* usercontribs is usercontributions
* First parameters of search and usercontributions are search and
user respectively
.
Properties and generators are implemented as Python generators. Their
limit parameter is only an indication of the number of items in one
chunk. It is not the total limit. Doing list(generator(limit =
limit)) will return ALL items of generator, and not be limited by the
limit value. Default chunk size is generally the maximum chunk size.