python-argh 0.26.2-1 source package in Ubuntu

Changelog

python-argh (0.26.2-1) unstable; urgency=medium

  * New upstream version 0.26.2
  * Drop 0001-fix-unit-tests.patch
  * Avoid depending on iocapture module for testing
  * Fix a typo in long description (found by lintian)
  * Bump standards-version to 3.9.8.0 (no changes)
  * Switch to debhelper compatibility version 9
  * Use an encrypted transport protocol for the Vcs-* URIs
  * Acknowledge the NMUs from Sean Whitton. Thanks for your contribution.

 -- Marco Nenciarini <email address hidden>  Fri, 16 Dec 2016 15:53:36 +0100

Upload details

Uploaded by:
Marco Nenciarini
Uploaded to:
Sid
Original maintainer:
Marco Nenciarini
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe misc

Builds

Zesty: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-argh_0.26.2-1.dsc 2.0 KiB eab61c1d9ad8d2ed0d45fa7df2018546b3ea848f2c9e5c4b0c74e16662bda5e7
python-argh_0.26.2.orig.tar.gz 32.1 KiB e9535b8c84dc9571a48999094fda7f33e63c3f1b74f3e5f3ac0105a58405bb65
python-argh_0.26.2-1.debian.tar.xz 3.5 KiB 7dfb900ef1f0fcbe347bb738c058ba7ff8283b5215260571071589c77e652786

Available diffs

No changes file available.

Binary packages built by this source

python-argh: No summary available for python-argh in ubuntu focal.

No description available for python-argh in ubuntu focal.

python3-argh: simple argparse wrapper (Python 3)

 Argh provides a very simple wrapper for argparse.
 .
 Argparse is a very powerful tool; argh just makes it easy to use.
 .
 Here’s a list of features that argh adds to argparse:
 .
  * mark a function as a CLI command and specify its arguments before
    the parser is instantiated;
  * nested commands made easy: no messing with subparsers;
  * infer command name from function name;
  * infer argument type from the default value;
  * infer argument action from the default value (for booleans);
  * infer arguments from function signature;
  * add an alias root command help for the --help argument;
  * enable passing unwrapped arguments to certain functions instead of
    an argparse.Namespace object.
 .
 Argh is fully compatible with argparse. You can mix argh-agnostic and
 argh-aware code. Just keep in mind that dispatch() does some extra
 work that a custom dispatcher may not do.
 .
 This package installs the library for Python 3.