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.2.1.tar.gz
(21.5 kB
view details)
Built Distribution
pyparam-0.2.1-py3-none-any.whl
(21.2 kB
view details)
File details
Details for the file pyparam-0.2.1.tar.gz
.
File metadata
- Download URL: pyparam-0.2.1.tar.gz
- Upload date:
- Size: 21.5 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 | a09f42702648785233176a39827ff42df8ea3236d27652d9c3f0ec0db5df0416 |
|
MD5 | fe2f8bd6f5edd169a7a0636cc2de692b |
|
BLAKE2b-256 | 87b4dd0b03c12211f2ca5d67cb20696fd7c6bbc37c49842d55f6691c1f4125e9 |
File details
Details for the file pyparam-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: pyparam-0.2.1-py3-none-any.whl
- Upload date:
- Size: 21.2 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 | 6a7b1d1e3d1da79a7ba90915f1feb5f7ad8b7d2d634669921e0367233d4d3c4a |
|
MD5 | e32303dc9ed2d17ac10d9be02b0deac1 |
|
BLAKE2b-256 | dad37c4239ec57111af45356bf4d206cdd8c9c654b883879216385716a54c0e6 |