mwclient 0.10.1-1 source package in Ubuntu

Changelog

mwclient (0.10.1-1) unstable; urgency=medium

  * New upstream release
  * Update Standards-Version to 4.5.0
  * Bump debhelper to 13
  * Add Rules-Requires-Root: no
  * Set upstream metadata fields: Bug-Database, Repository, Repository-Browse,
    Bug-Submit.
  * d/copyright
    - Update upstream copyright

 -- HÃ¥vard Flaget Aasen <email address hidden>  Tue, 02 Jun 2020 22:35:28 +0200

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 Pocket Published Component Section

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
mwclient_0.10.1-1.dsc 1.8 KiB 89c3a2211a3a5e3538cc03a379d390b743be5ea0fab7a013cc7ac38339694b1e
mwclient_0.10.1.orig.tar.gz 32.6 KiB ce8869d8b3df537138edecf4cf164c25b811d949ac07286d302dc67c0d748eb8
mwclient_0.10.1-1.debian.tar.xz 3.5 KiB a6fdb2bb027c975f2b153748360de81ce98af5eea872c61e4f739e84f5aaaecb

Available diffs

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.