Skip to main content

A simple argparse wrapper.

Project description

Did you ever say “argh” trying to remember the details of optparse or argparse API? If yes, this package may be useful for you. It provides a very simple wrapper for argparse with support for hierarchical commands that can be bound to modules or classes. Argparse can do it; argh makes it easy.

In a nutshell

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;

  • nesed commands made easy: no messing with subparsers (though they are of course used under the hood);

  • infer agrument type from the default value;

  • infer command name from function name;

  • add an alias root command help for the --help argument;

  • enable passing unwrapped arguments to certain functions instead of a argparse.Namespace object.

Argh is fully compatible with argparse. You can mix argh-agnostic and argh-aware code. Just keep in mind that argh.dispatch does some extra work that a custom dispatcher may not do.

Installation

$ pip install argh

Example

A very simple application with one command:

@command
def echo(text='hello'):
    print text

parser = ArghParser()
parser.add_commands([echo])

if __name__ == '__main__':
    parser.dispatch()

The powerful API of argparse is also available:

@arg('text', default='hello world', nargs='+', help='The message')
def echo(args):
    print args.text

The approaches can be safely combined.

Documentation

See the complete documentation for details. If it’s not complete enough, feel free to ask your questions or submit bugs.

Author

Originally written by Andrey Mikhaylenko in 2010.

See file AUTHORS for a complete authors list of this application.

Please feel free to submit patches, report bugs or request features:

http://bitbucket.org/neithere/argh/issues/

Licensing

Argh is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Argh is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with Argh. If not, see <http://gnu.org/licenses/>.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

argh-0.10.0.tar.gz (10.1 kB view details)

Uploaded Source

File details

Details for the file argh-0.10.0.tar.gz.

File metadata

  • Download URL: argh-0.10.0.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for argh-0.10.0.tar.gz
Algorithm Hash digest
SHA256 e2d1d3b2f035978594070623877122bf610dcb4505863243f922edf29c4b28ee
MD5 042ad809882e209ee34d5ba7a540cdf0
BLAKE2b-256 0bab6e576cfbfe6a58f65558c94b8fdbb0152687cdcb99727309dc2ffa6817b4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page