Skip to main content

A small optimization of Python library argparse.All original usage are retained,but adding a yml file so the user can set the arguments by editing the yml file.

Project description

Argeye - a small improved version of Argparse

argeye retains all the original usage of argparse,but adding a yml file so user can modify arguments by editing yml file.

argparse supports command lines to set arguments,whose disadvantages is that the user have to type the arg strings and values.

the typing is a redundant operation,which may cause mistakes and counterintuitive understanding of the args.

yml file provides intuitive understanding and a more convenient way to set args.

only one line change,better experience of argparse

usage

(original)

retained all the original usage of argparse,detailed info refer to official document

(new)

first run (same as running argparse)

# examples/main.py
from argeye import ArgumentParser

parser = ArgumentParser()
parser.add_argument("equip_name", type=str, default="wired")
parser.add_argument("--model_name", default="pd", type=str)
parser.add_argument("--finetune", default=False, type=bool)

args = parser.parse_args()
print(args)
# decide whether to input arguments at the terminal based on actual needs
$ python examples/main.py
Namespace(equip_name='wired',model_name='pd',finetune=True)

after executing the above command line operations,the yml file will be created in the work directory.

the content of the yml file is as follows:

equip_name: wired
--model_name: pd
--finetune: false

now having the yml file,the user can change arguments values by editing yml file instead of typing strings into command lines.

when the change operation is completed(completed in the yml file),simply run the python file without the need of typing arguments on the command line.

example:

# change arguments in the yml file
equip_name: wireless
--model_name: resnet
--finetune: True
# run python file directly
$ python examples/main.py
Namespace(equip_name='wireless', model_name='resnet', finetune=True)

installation

pip install argeye

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

argeye-0.0.3.tar.gz (26.3 kB view hashes)

Uploaded Source

Built Distribution

argeye-0.0.3-py3-none-any.whl (25.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page