Powerful parameter processing.
Project description
pyparam
Powerful parameter processing
Features
- Command line argument parser (with subcommand support)
list/array
,dict
,positional
andverbose
options support- Type overwriting for parameters
- Rich API for Help page redefinition
- Parameter loading from configuration files
- Shell completions
Installation
pip install pyparam
# install latest version via poetry
git clone https://github.com/pwwang/pyparam.git
cd pyparam
poetry install
Basic usage
examples/basic.py
from pyparam import params
# define arguments
params.version = False
params.version.desc = 'Show the version and exit.'
params.quiet = False
params.quiet.desc = 'Silence warnings'
params.v = 0
# verbose option
params.v.type = 'verbose'
# alias
params.verbose = params.v
# list/array options
params.packages = []
params.packages.desc = 'The packages to install.'
params.depends = {}
params.depends.desc = 'The dependencies'
print(params._parse())
> python example/basic.py
> python examples/basic.py -vv --quiet \
--packages numpy pandas pyparam \
--depends.completions 0.0.1
{'h': False, 'help': False, 'H': False,
'v': 2, 'verbose': 2, 'version': False,
'V': False, 'quiet': True, 'packages': ['numpy', 'pandas', 'pyparam'],
'depends': {'completions': '0.0.1'}}
Documentation
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
pyparam-0.1.4.tar.gz
(20.8 kB
view details)
Built Distribution
pyparam-0.1.4-py3-none-any.whl
(20.5 kB
view details)
File details
Details for the file pyparam-0.1.4.tar.gz
.
File metadata
- Download URL: pyparam-0.1.4.tar.gz
- Upload date:
- Size: 20.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.16 CPython/3.7.1 Linux/4.15.0-1028-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e15a8c6d5486b5a6d54a2eac4121104d70de611509d8c4b87964bbc582567818 |
|
MD5 | e92d782d3435385bbd13f6f34837f287 |
|
BLAKE2b-256 | a7762d2f8dc3ba042c263831cb13d2d955b203e95f132a751957802337498e1d |
File details
Details for the file pyparam-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: pyparam-0.1.4-py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.16 CPython/3.7.1 Linux/4.15.0-1028-gcp
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2a3f2b38ee89fba791ce163c43c6218dd12206da10fad7c8ec8bd663001a12b |
|
MD5 | 0f62c60b3165587a413077271fa2f5cb |
|
BLAKE2b-256 | 3f0735482b958384f7d50de9da50ec338c84afaec093fa9e652ecb05a75019b2 |