Parguments: A simple cli args parser for Python
Project description
A simple cli args parser for Python.
Useful for creating command-line scripts.
Example
""" catsup v1.0 Usage: catsup init [<path>] catsup build catsup deploy catsup -h | --help catsup --version Options: -h --help Show this screen and exit. -s --settings=<file> path to config file. [default: config.json] """ from parguments import Parguments parguments = Parguments(__doc__, version='1.0') @parguments.command def init(path): """ Usage: catsup init [<path>] Options: -h --help Show this screen and exit. -s --settings=<file> path to setting file. [default: config.json] """ pass @parguments.command def build(settings): """ Usage: catsup build [-s <file>|--settings=<file>] Options: -h --help Show this screen and exit. -s --settings=<file> path to setting file. [default: config.json] """ pass @parguments.command def deploy(settings): """ Usage: catsup deploy [-s <file>|--settings=<file>] Options: -h --help Show this screen and exit. -s --settings=<file> path to setting file. [default: config.json] """ pass if __name__ == '__main__': parguments.run()
Documents at http://parguments.rtfd.org/
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size parguments-0.3.2-py2.7.egg (9.0 kB) | File type Egg | Python version 2.7 | Upload date | Hashes View |
Filename, size parguments-0.3.2.tar.gz (5.0 kB) | File type Source | Python version None | Upload date | Hashes View |