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(): ...
(seeTyper.add_callback()
). - Modules are treated as commands and must define a
def main(): ...
(seeTyper.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.
- [Planned] Support for new-style type hints in older Python versions (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).
[Planned] 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.
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
File details
Details for the file terracomp_typer-0.0.3.tar.gz
.
File metadata
- Download URL: terracomp_typer-0.0.3.tar.gz
- Upload date:
- Size: 6.4 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6790bc353c549ca0b8cbffb7b2e1785fb0bba4579b7cae283fad62761c3415da |
|
MD5 | 7cf7876ab614f7332d8c96d42a5e33c6 |
|
BLAKE2b-256 | 092b967cef6de5012bd0021eec3cb0bf8f6d1f9673679638e8cd4ca4b4f241b4 |
File details
Details for the file terracomp_typer-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: terracomp_typer-0.0.3-py3-none-any.whl
- Upload date:
- Size: 7.3 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa66acfb0d9115cb4807647c1fe74ff3fa61eae3fcf90291922c9ebb721523b5 |
|
MD5 | 1340e0b8f75d8612577988d7d5d3fbc6 |
|
BLAKE2b-256 | b53a916d0a104f7b909917b68be81fbb33faf55b3ccec3fff0f52e3003188df8 |