Skip to main content

No project description provided

Project description

terracomp-typer

This package allows you to easily build a Typer CLI application from a Python module hierarchy.

Quickstart

$ tree src/mypackage/commands/
src/mypackage/
├── __init__.py
├── __main__.py
└── commands
    ├── __init__.py
    ├── hello.py
    └── bye.py
# src/mypackage/commands/hello.py
def main(name: str) -> None:
    print("Hello,", name)
# src/mypackage/__main__.py
from terracomp_typer import build_app_from_module

if __name__ == "__main__":
    app = build_app_from_module("mypackage.commands")
    app()

Features

  • Packages are treated as command groups and may define a def callback(): ... (see Typer.add_callback()).
  • Modules are treated as commands and must define a def main(): ... (see Typer.command()).
  • Underscores in package or module names are normalized to hyphens (e.g my_command -> my-command).
  • Command(-group) help text is extracted from the package or module docstring, or from the main() docstring.
  • [WIP] Improved and dynamic dependency injection.
  • Support for new-style type hints in older versions of Python and Typer (e.g. str | None).

Dependency Injection

The terracomp_typer.DependencyInjector is essentially a mapping of types to a corresponding implementation. It allows you to bind any function to the given dependencies based on the function signature.

The build_app_from_module() takes a dependencies argument which populates a DependencyInjector. All callback() and main() functions encountered and added to a typer.Typer object are first bound to the dependencies that can be served by the injector.

The types for which injection can take place must be known in advance. If the implementation is not known in advance, a callback() can accept the DependencyInjector as an argument and inform about the dependencies that will be provided by the callback, allowing any of its subcommands to resolve it.

# src/mypackages/commands/__init__.py
"""
This is a cool CLI that uses terracomp-typer.
"""

from mypackage.config import CliConfig
from pathlib import Path
from terracomp_typer import DependencyInjector, DelayedBinding
from typer import Option

def callback(
    config_file: Path = Option(Path("~/.config/mypackage.ini"), help="Path to the configuration file."),
    dependencies: DependencyInjector = DelayedBinding(CliConfig),
) -> None:
    dependencies.register_supplier(CliConfig, lambda: CliConfig.load(config_file))
# src/mypackage/commands/hello.py
from mypackage.config import CliConfig

def main(name: str, config: CliConfig) -> None:
    # ...

In the above example, the config parameter is not passed by Typer, but instead by the DependencyInjector per the implementation in the previous callback() snippet.

Known caveats

  • Only concrete types are supported (no Optional[CliConfig] or vice versa).

New-style type hint support

Through typeapi, we can convert new-tyle type hints such as str | None or list[int] to their corresponding representation using typing before the function signature is parsed by Typer. Usually, ty

# src/mypackage/commands/hello.py
from mypackage.config import CliConfig

def main(name: str | None = None) -> None:
    # ...

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

terracomp_typer-0.0.7.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

terracomp_typer-0.0.7-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file terracomp_typer-0.0.7.tar.gz.

File metadata

  • Download URL: terracomp_typer-0.0.7.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/37.3 requests/2.28.1 requests-toolbelt/0.10.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/5.0.0 keyring/23.11.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.10

File hashes

Hashes for terracomp_typer-0.0.7.tar.gz
Algorithm Hash digest
SHA256 a8b79b8fb96a956fe39dd03441adc723db6cb72d3cb5060fb1acc3acdb2b6382
MD5 e6dc4eb1030124065b5e091a9ead3fe0
BLAKE2b-256 77c36283f685bc5ed8a237779c442ac3f9b3b63eaf51ba49ff6ad5eaede3d1e2

See more details on using hashes here.

File details

Details for the file terracomp_typer-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: terracomp_typer-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/37.3 requests/2.28.1 requests-toolbelt/0.10.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/5.0.0 keyring/23.11.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.10

File hashes

Hashes for terracomp_typer-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 38c5a0fc42fca9a763c711e70d91912f6dfd15aa5af9df46b384032eac3d9f29
MD5 8896f7216764c67d9080287daf3e2b5c
BLAKE2b-256 9b9b3592fd586972aacc981621bded49a50642f0f98ee7d3ae989ba7db4ed059

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