mwclient 0.10.1-3 source package in Ubuntu

Changelog

mwclient (0.10.1-3) unstable; urgency=medium

  * QA upload.
  * Orphan package, set maintainer to Debian QA Group.

 -- HÃ¥vard F. Aasen <email address hidden>  Mon, 08 Apr 2024 21:19:01 +0200

Upload details

Uploaded by:
Debian QA Group
Uploaded to:
Sid
Original maintainer:
Debian QA Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
mwclient_0.10.1-3.dsc 1.6 KiB e03858d7af04cbc190ce87b4ed8ac4efc23e503e0ae4f07921f92b8bbcee9dbe
mwclient_0.10.1.orig.tar.gz 32.6 KiB ce8869d8b3df537138edecf4cf164c25b811d949ac07286d302dc67c0d748eb8
mwclient_0.10.1-3.debian.tar.xz 3.6 KiB dac2978072fe9f9594adc1d44d5ba3d566428a0750edb0e8f0d20ab049466712

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.