No project description provided
Project description
Aparse
Aparse is a python argparse extension with support for typing. It has support for argparse
and click
libraries. It uses function signatures to automatically register arguments to parsers.
Please refer to the documentation.
The following features are currently supported:
- Arguments with
int
,float
,str
,bool
values both with and without default value. - List of
int
,float
,str
,bool
types. - Types with
from_str
method. dataclass
arguments, where the dataclass is expanded into individual parameters- Multi-level
dataclass
arguments. argparse
andclick
libraries are fully supported.- For
argparse
, when classes are used, it supports traversing inheritance chain. - For
argparse
, custom prefixes can be used for groups of parameters. - Callbacks before and after arguments are parsed.
- Conditional arguments, where the type of arguments depends on the value of another argument.
Why aparse
Why not argparse? Aparse does not force you to replace your argparse code. In fact, it was designed to extend argparse. You can combine the original argparse code and in some parts of the code, you can let aparse generate the arguments automatically.
Furthermore, aparse allows you to use conditional parameter parsing, which cannot be achieved with pure argparse.
Why not click? Same as with argparse, aparse extends click in such a way, that you can combine the original code with aparse. With aparse, you don't have to decorate your commands with all options, but you can let aparse manage them for you.
Why not docopt? With docopt you have to keep documentation in sync with your code. Aparse uses the signatures instead, which allows you to validate your code with a typechecker.
Installation
Install the library from pip:
$ pip install aparse
Getting started
Using argparse library
Extend a function with @add_argparse_arguments
decorator to add arguments automatically:
import argparse
from aparse import add_argparse_arguments
@add_argparse_arguments()
def example(arg1: str, arg2: int = 5):
pass
parser = argparse.ArgumentParser()
parser = example.add_argparse_arguments(parser)
args = parser.parse_args()
# Call example with args
example.from_argparse_arguments(args)
Extend a class with @add_argparse_arguments
decorator to construct it automatically:
import argparse
from aparse import add_argparse_arguments
@add_argparse_arguments()
class Example:
def __init__(self, arg1: str, arg2: int = 5):
pass
parser = argparse.ArgumentParser()
parser = Example.add_argparse_arguments(parser)
args = parser.parse_args()
# Construct Example with args
instance = Example.from_argparse_arguments(args)
Using click library
Import aparse.click
instead of click
and let aparse
register all
the arguments and options:
# python main.py --arg1 test --arg2 4
from aparse import click
@click.command()
def example(arg1: str, arg2: int = 5):
pass
example()
When using click.groups
:
# python main.py example --arg1 test --arg2 4
from aparse import click
@click.group()
def main():
pass
@main.command('example')
def example(arg1: str, arg2: int = 5):
pass
main()
For further details please look at the documentation.
License
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 aparse-0.0.16.tar.gz
.
File metadata
- Download URL: aparse-0.0.16.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f415e762fc0e14c220d23b146a58be03a7c3cc5c96824896989966b3267bd83c |
|
MD5 | 556b67a314a731fd76e8597620d8f1ef |
|
BLAKE2b-256 | 8f0b548904b2db40e5c80823c6c7faa506091759432e9e601fd8a6dc84aa3b4b |
File details
Details for the file aparse-0.0.16-py3-none-any.whl
.
File metadata
- Download URL: aparse-0.0.16-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83a503bf9720c953c48a237aafe552df50511e7426cd72dc66b33fc8a52a1807 |
|
MD5 | dc7a00759e209c7d63de17508473bcb0 |
|
BLAKE2b-256 | 5780b176ca0e5976691868e3a3a38c2d8c7d66b8641aca93259ef1a29502403e |