Pythonic commands and subcommands for docopt
Project description
…
Example
"""Do somethings
Usage:
example.py [-vfr] do (a|b)
Options:
-v --verbose Be verbose.
-f --force Force.
-r --random Huh?.
"""
from docopt import docopt
from docopt_cmd import cmd
def main():
args = docopt(__doc__)
#print(args)
cmd.dispatch(args)
#explicitly specify spec and options to pass as arguments
@cmd('do a', force='--force')
def something(force):
print('doing a')
print(force)
#or use magic
@cmd
def do_b(random):
print 'doing b'
print random
if __name__ == '__main__':
main()
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
docopt-cmd-0.0.1.tar.gz
(2.2 kB
view details)
File details
Details for the file docopt-cmd-0.0.1.tar.gz
.
File metadata
- Download URL: docopt-cmd-0.0.1.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b97cb8871d97269674481a19c1d71d9370379bc4982fc09fc3f730b3db9978a |
|
MD5 | 7f0f13c2752cf5fe131d5bf9b942fe3b |
|
BLAKE2b-256 | b1f049c1c13544c40aa2113e6b8f0037ed52f0f91f75579c8650dfc0c247e2ff |