Skip to main content

A microscopic library to turn any function into a CLI.

Project description

uPyCLI

A microscopic library to turn any function into a CLI.

Takes some inspiration from pycli although I didn't know this existed before starting. This lib is even smaller than pycli and does not require any setup and has no dependencies.

The good thing about this is, you don't need to write or maintain any code for the CLI, all your types, variables, descriptions are introspected from the code itself, so all you do is throw on a decorator.

Usage

ucli path.to.your.function --help

For this to work, all you need to do is have a function in the module with the right type-annotations and all optional values should have a default value.

# Here model_name is required and data_path is optional
def train(
        model_name: str, 
        data_path: str = "./path/to/data"):
    ...

Alternatively, the command decorator can be used to directly turn the function into a CLI command

# main.py
from upycli.decorator import command

@command
def train(model_name: str, data_path: str = "./path/to/data"):
    """
    A function to train a model
    """
    ...
python main.py train --help
>>> usage: main.py [-h] --model_name MODEL_NAME [--data_path DATA_PATH]

A function to train a model

options:
  -h, --help               show this help message and exit
  --model_name MODEL_NAME  str
  --data_path DATA_PATH    str (default ./path/to/data)

Your variables, types, required values and description are introspected from the code itself, so all you do is throw on the decorator.

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

upycli-0.2.5.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

upycli-0.2.5-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file upycli-0.2.5.tar.gz.

File metadata

  • Download URL: upycli-0.2.5.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for upycli-0.2.5.tar.gz
Algorithm Hash digest
SHA256 276675462f2a6cdcdbc133af8b2d2b9a765b662a1d51cbfd67203a08f6c553b6
MD5 1d8db94a6cbadd9e53adef0a451b3306
BLAKE2b-256 2e85f180d66743b7177b89dc8bd5768da1c2a90cdb09cc73185dc282988f68e8

See more details on using hashes here.

File details

Details for the file upycli-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: upycli-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 4.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for upycli-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 70c0184a919fea0545131942c1652f725c7b935a9d88611cceba2f4ed94c22b0
MD5 96a5a1b856d0a7aca0de3367184f3869
BLAKE2b-256 6c4f0a6dc3adbcee75dbaeceb8d398298a228d839d786cc4aec9e4dfb1fb01f4

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