A declarative interface to argparse and extras.
Project description
Version 1.0.0
A simple wrapper for argparse that allows commands and arguments to be defined declaratively using decorators. Note that this does not support all the features of argparse yet.
Commando also bundles a few utilities that are useful when building command line applications.
Example
Without commando:
def main(): parser = argparse.ArgumentParser(description='hyde - a python static website generator', epilog='Use %(prog)s {command} -h to get help on individual commands') parser.add_argument('-v', '--version', action='version', version='%(prog)s ' + __version__) parser.add_argument('-s', '--sitepath', action='store', default='.', help="Location of the hyde site") subcommands = parser.add_subparsers(title="Hyde commands", description="Entry points for hyde") init_command = subcommands.add_parser('init', help='Create a new hyde site') init_command.set_defaults(run=init) init_command.add_argument('-t', '--template', action='store', default='basic', dest='template', help='Overwrite the current site if it exists') init_command.add_argument('-f', '--force', action='store_true', default=False, dest='force', help='Overwrite the current site if it exists') args = parser.parse_args() args.run(args) def init(self, params): print params.sitepath print params.template print params.overwrite
With commando:
class Engine(Application): @command(description='hyde - a python static website generator', epilog='Use %(prog)s {command} -h to get help on individual commands') @param('-v', '--version', action='version', version='%(prog)s ' + __version__) @param('-s', '--sitepath', action='store', default='.', help="Location of the hyde site") def main(self, params): pass @subcommand('init', help='Create a new hyde site') @param('-t', '--template', action='store', default='basic', dest='template', help='Overwrite the current site if it exists') @param('-f', '--force', action='store_true', default=False, dest='overwrite', help='Overwrite the current site if it exists') def init(self, params): print params.sitepath print params.template print params.overwrite
Resources
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
commando-1.0.0.tar.gz
(13.5 kB
view details)
File details
Details for the file commando-1.0.0.tar.gz
.
File metadata
- Download URL: commando-1.0.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3cc802fc8c13d562d9de3ad9246da3f5931cc99c07cc9cc8a70cd0a816f75682 |
|
MD5 | 0ba5d7c211dfa1c8e53ff99e08f33bac |
|
BLAKE2b-256 | db7e494f4a185245cd5a57b9e1f911bf4c2258d799b4f3c41aef9b5f983b61d8 |