Skip to main content

Create argparser automatically from functions

Project description

Overview

A wrapper around argparser to help build CLIs from functions. Uses type-hints extensively :snake:.

PyPi Version Python Version PyPI License

Setup

:gear: Installation

Install it directly into an activated virtual environment:

$ pip install arger

or add it to your Poetry project:

$ poetry add arger

:books: Usage

  • create a python file called test.py
from arger import Arger

def main(param1: int, param2: str, kw1=None, kw2=False):
    """Example function with types documented in the docstring.

    :param param1: The first parameter.
    :param param2: The second parameter.
    """
    print(locals())

if __name__ == '__main__':
    Arger(main).run()
  • Here Arger is just a subclass of ArgumentParser. It will not conceal you from using other argparse libraries.

  • run this normally with

python test.py 100 param2
  • Checkout examples folder and documentation to see more of arger in action. It supports any level of sub-commands.

Features

  • Uses docstring to parse help comment for arguments. Supports
  • Flags will be generated from parameter-name. If needed you could declare it inside docstring like :param arg1: -a --arg this is the document. Also one can use def main(arg1:int=Option('-a', '--arg')): ...
  • The decorated functions can be composed to form nested sub-commands of any level.
  • No external lib dependency
  • Most of the Standard types supported. Please see examples for more supported types with examples.
  • All argument to ArgumentParser.add_argument is supported. It can be updated with arger.Argument or arger.Option classes.
  • *args supported but no **kwargs support yet.
  • all optional arguments that start with underscore is not passed to Parser. They are considered private to the function implementation. One can use _namespace_ to get the output from the ArgumentParser.parse_args()

Similar Projects

argh

  • has similar goals as to ease up using argparser.
  • doesn't support type hints.
  • No recent releases.

typer

  • if you are using click , I highly recommend you to check this library.
  • it is neat and many features are drawn from it.
  • doesn't support loading help text for arguments from docstrings.

invoke

  • doesn't support type hints.

cliche

  • has similar goals.
  • doesn't cover much use cases as arger .

cliar

  • no docstring support for help argument.

Recommended Alternatives

Projects that I highly recommend you to checkout.

  1. clize
  2. nuclear
  3. defopt

This project was generated with cookiecutter using jacebrowning/template-python.

Argparser enhancements

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

arger-1.0.10.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

arger-1.0.10-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file arger-1.0.10.tar.gz.

File metadata

  • Download URL: arger-1.0.10.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.4.0-1031-azure

File hashes

Hashes for arger-1.0.10.tar.gz
Algorithm Hash digest
SHA256 cca35285db71ea80fe5c1c6b41f4e3c07db0c7d07904c153cac8a0c579a15fff
MD5 5b08fbe2aec81659de3f95e8dc140a3d
BLAKE2b-256 f80ef34c67500438a006aa52415d58cea9b79ce865a41cab57d1699044c49874

See more details on using hashes here.

File details

Details for the file arger-1.0.10-py3-none-any.whl.

File metadata

  • Download URL: arger-1.0.10-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.4.0-1031-azure

File hashes

Hashes for arger-1.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 63a1798918f33a0773aa5d70a06817bb526677eaebbd353de45e7e6b89ba6699
MD5 c24d80dae52e6a2bd4f6d1e6a0d8c825
BLAKE2b-256 6319135108fe5c79197810660c46b0c434eb6bde544ebce55f321e221467f6b9

See more details on using hashes here.

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