python-argh 0.26.1-1 source package in Ubuntu

Changelog

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


  [ Marco Nenciarini ]
  * Imported Upstream version 0.26.1
  * Fix some unit tests to not fail in a clean build environment
  * Update debian/watch
  * Bump standards-version to 3.9.6.0 (no changes)

  [ Brian May ]
  * Python3 package (Closes: 778446)

 -- Marco Nenciarini <email address hidden>  Tue, 17 Feb 2015 05:50:19 +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
Xenial release universe misc

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-argh_0.26.1-1.dsc 2.0 KiB 39bdb5d1d426a36541054d9b0cc7fdc26cb9889d48bb7334ff7ed9d7a988df8c
python-argh_0.26.1.orig.tar.gz 31.5 KiB 06a7442cb9130fb8806fe336000fcf20edf1f2f8ad205e7b62cec118505510db
python-argh_0.26.1-1.debian.tar.xz 3.1 KiB 99ee101ccc2d52230b82341dec1c7f7d6a241cd3cfc1608b97ac9b01007e1c52

Available diffs

No changes file available.

Binary packages built by this source

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

No description available for python-argh in ubuntu wily.

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 agrument 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.