mwclient 0.10.1-2 source package in Ubuntu

Changelog

mwclient (0.10.1-2) unstable; urgency=medium

  [ Ondřej Nový ]
  * d/control: Update Maintainer field with new Debian Python Team
    contact address.
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Håvard Flaget Aasen ]
  * d/watch: Update to version 4.
  * Add autopkgtest
  * Move disabling of test from patch to d/rules.
  * d/patches: Add "Forwarded" to comply with DEP-3.
  * d/gbp.conf: Make debian/master default branch.
  * d/control: Update Standards-Version to 4.6.0

 -- Håvard Flaget Aasen <email address hidden>  Mon, 23 Aug 2021 23:37:39 +0200

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
mwclient_0.10.1-2.dsc 2.2 KiB 983e386ec885221121000453dfa92461d14463f0c9fd79dc100e526b25f258d3
mwclient_0.10.1.orig.tar.gz 32.6 KiB ce8869d8b3df537138edecf4cf164c25b811d949ac07286d302dc67c0d748eb8
mwclient_0.10.1-2.debian.tar.xz 3.6 KiB fae1770e4f3ca5c3968590c9159f34e8abfe1a710dc1355f28ac03579ec91f08

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.