doc to argparse driven by docopt
Project description
doc to argparse driven by docopt
Define your command line interface (CLI) from a docstring (rather than the other way around). Because it’s easy. It’s quick. Painless. Then focus on what’s actually important - using the arguments in the rest of your program.
The problem is that this is not always flexible. Still need all the features of argparse? Now have the best of both worlds… all the extension such as shtab or Gooey but with the simple syntax of docopt.
Installation
Latest PyPI stable release
pip install argopt
Latest development release on GitHub
Pull and install:
pip install "git+https://github.com/casperdcl/argopt.git@master#egg=argopt"
Latest Conda release
conda install -c conda-forge argopt
Changelog
The list of all changes is available on the Releases page: .
Usage
Standard docopt docstring syntax applies. Additionally, some improvements and enhancements are supported, such as type checking and default positional arguments.
'''Example programme description.
You should be able to do
args = argopt(__doc__).parse_args()
instead of
args = docopt(__doc__)
Usage:
test.py [options] <x> [<y>...]
Arguments:
<x> A file.
--anarg=<a> Description here [default: 1e3:int].
-p PAT, --patts PAT Or [default: None:file].
--bar=<b> Another [default: something] should
auto-wrap something in quotes and assume str.
-f, --force Force.
'''
from argopt import argopt
__version__ = "0.1.2-3.4"
parser = argopt(__doc__, version=__version__)
args = parser.parse_args()
if args.force:
print(args)
else:
print(args.x)
For comparison, the docopt equivalent would be:
'''Example programme description.
Usage:
test.py [options] <x> [<y>...]
Arguments:
<x> A file.
--anarg=<a> int, Description here [default: 1e3].
-p PAT, --patts PAT file, Or (default: None).
--bar=<b> str, Another [default: something] should
assume str like everything else.
-f, --force Force.
-h, --help Show this help message and exit.
-v, --version Show program's version number and exit.
'''
from docopt import docopt
__version__ = "0.1.2-3.4"
args = docopt(__doc__, version=__version__)
args["--anarg"] = int(eval(args["--anarg"]))
if args["--patts"]:
args["--patts"] = open(args["--patts"])
if args["--force"]:
print(args)
else:
print(args["<x>"])
Advanced usage and examples
See the examples folder.
Documentation
def argopt(doc='', argparser=ArgumentParser,
formatter_class=RawDescriptionHelpFormatter,
logLevel=logging.NOTSET, **_kwargs):
"""
Note that `docopt` supports neither type specifiers nor default
positional arguments. We support both here.
Parameters
----------
doc : docopt compatible, with optional type specifiers
[default: '':str]
argparser : Argument parser class [default: argparse.ArgumentParser]
version : Version string [default: None:str]
formatter_class : [default: argparse.RawDescriptionHelpFormatter]
logLevel : [default: logging.NOTSET]
_kwargs : any `argparser` initialiser arguments
N.B.: `prog`, `description`, and `epilog` are automatically
inferred if not `None`
Returns
-------
out : argparser object (default: argparse.ArgumentParser)
Usage
-----
Extension syntax example: [default: 1e3:int].
You should be able to do
parser = argopt(__doc__)
args = parser.parse_args()
instead of
args = docopt(__doc__)
TODO
----
add_argument_group
add_mutually_exclusive_group
(better) subparser support
(docopt extension) action choices
(docopt extension) action count
"""
Contributions
All source code is hosted on GitHub. Contributions are welcome.
LICENCE
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
Built Distribution
File details
Details for the file argopt-0.7.1.tar.gz
.
File metadata
- Download URL: argopt-0.7.1.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1aa7dfe495f2c2dca56fc6d3232d0c4c2f7514062a2cb44190082022f330f5dc |
|
MD5 | 0a4ed9da6bfc06652d5caa31cf4df67a |
|
BLAKE2b-256 | 842da4f512fc9f150f1cc2ac335fcbbe6071fcd99f8528df71fd35f9171860a4 |
File details
Details for the file argopt-0.7.1-py2.py3-none-any.whl
.
File metadata
- Download URL: argopt-0.7.1-py2.py3-none-any.whl
- Upload date:
- Size: 14.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94ca1828f95e007b738b1f93cb2112610f939dbdf687e4936d6e6d7b88c8bf8e |
|
MD5 | d5ea889e7c59a6554ff03dafc94c53f9 |
|
BLAKE2b-256 | bfeeb7bfcebcbbbcafb2be71b1926e5e0c988652a256f7e070839102e059ab86 |