Enhance ArgumentParser with a TCP-based API for argument handling.
Project description
netargparse
A Python library that imbues the standard ArgumentParser with an API for the Python script.
This library is intended as a replacement for the ArgumentParser of the standard argparse library, providing an additional TCP based API for handling the arguments of the script.
A minimal example minimal.py with the ArgumentParser could be
from argparse import ArgumentParser
def add_one(args):
new_number = args.x + 1
print(new_number)
return(new_number)
parser = ArgumentParser()
parser.add_argument("-x", type=int, required=True)
args = parser.parse_args()
add_one(args)
and running the script results in
$ python minimal.py -x 5
6
Replacing the ArgumentParser with the NetArgumentParser from this library:
from netargparse import NetArgumentParser
def add_one(args):
new_number = args.x + 1
print(new_number)
return(new_number)
nap = NetArgumentParser()
nap.parser.add_argument("-x", type=int, required=True)
nap(add_one)
The script can now be run in two modes:
main- standalone, same behaviour as abovenap- enable the API
Main
All arguments must be passed from the CLI after the main argument.
$ python minimal.py main -x 5
6
Nap
nap makes the script listen on a port and wait for the arguments.
$ python minimal.py nap --port 7000 --http
It is then possible to run the main function of the script by sending an HTTP get request with url parameters as arguments.
For example visit http://localhost:7000/?-x=5 with a browser and receive the script's return as json.
{"response": 6, "exception": "", "finished": 1}
Installation
pip install netargparse
No additional libraries will be installed. All libraries used are part of The Python Standard Library.
Documentation
More documentation can be found in docs.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netargparse-0.1.6.tar.gz.
File metadata
- Download URL: netargparse-0.1.6.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.21 Linux/5.14.0-503.16.1.el9_5.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df49f0e76c6b9ed9067fcd0982c971016519a1e3e6b27dadc805c60de5259f7c
|
|
| MD5 |
50378ffd52d3c9f73ee49adbae0dac93
|
|
| BLAKE2b-256 |
11259fd17dab9930ee35b424df9b387726ba81e3b22ab5c5df695f416084b6d1
|
File details
Details for the file netargparse-0.1.6-py3-none-any.whl.
File metadata
- Download URL: netargparse-0.1.6-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.21 Linux/5.14.0-503.16.1.el9_5.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe324b4b7bc762cf4777a1b7196011a02db5215e4d488115d3c1410c9c471191
|
|
| MD5 |
ac4ad46f9f985d01ddeb3adf3dc9397a
|
|
| BLAKE2b-256 |
56e573ef732c538de40a4a855699be886aee1dc5c45323fdead3d0be563b8656
|