No project description provided
Project description
typer-builder
A framework for simplifying the development of Typer based CLIs supporting modern type hints and hierarchical dependency injection.
Table of Contents
Introduction
The build_app_from_module()
inspect a hierarchy of Python modules to build a Typer command and group structure.
Packages are treated as command groups and may define a callback()
member. Modules are treated commands and must
define a main()
member. Modules and packages prefixed with an underscore ( _
) are ignored. Help text is extracted
from the main()
docstring or the module docstring.
In addition, we provide support for new-style type hints (PEP 585 - Type Hinting Generics in Standard Collections
and PEP 604 - Union Operators) in older versions of Python as well as adapt it for Typer (e.g. list[str]
and str | None
), as well as a method of injecting dependencies to functions that are not sourced from the command-line.
Example
$ tree src/mypackage/
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 typer_builder import build_app_from_module
if __name__ == "__main__":
app = build_app_from_module("mypackage.commands")
app()
Documentation
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.
# src/mypackage/commands/create_user.py
from ___future__ import annotations
def main(name: str | None = None, groups: list[str] | None = None) -> None:
# ...
typeapi
also allows us to convert list[str]
to List[str]
and dict[str, int]
to Dict[str, int]
for
Python versions prior to 3.9. This is necessary because Typer does not support the new-style type hints.
Dependency injection
The typer_builder.Dependencies
object is used to map types to concrete values or functions that provide them.
Functions wrapped with Dependencies.bind()
will have their arguments resolved by the injector based on type
annotations. Every build_app_from_module()
call creates a new Dependencies
instance. Dependencies can be
injected from the outside by passing a Dependencies
instance to build_app_from_module()
or by providing
additional dependencies via a callback()
function on the command group.
Note that the Dependencies
does not understand generics with different type parameters. For example, it makes
no distinction between MyGeneric[int]
and MyGeneric[str]
. This is a limitation of the current implementation as well
as the Python type system.
The most common use case for dependency injection is to inject configuration managers or clients into subcommands. For an example, you should check out the examples/dependency-injection directory.
License
This project is licensed under the terms of the MIT license.
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
Built Distribution
File details
Details for the file typer_builder-0.0.8.tar.gz
.
File metadata
- Download URL: typer_builder-0.0.8.tar.gz
- Upload date:
- Size: 9.6 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.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b62b4dfb86d8926884ff2e7a2035a6a9f07e1443d64856974a60e2198d3bc5c1 |
|
MD5 | 38b198e1e429c837c3268061bb3156e2 |
|
BLAKE2b-256 | 6ff81e8faed3f944260cd91176cbd4b0e88349a719990f0b17a91a6115b1aa71 |
File details
Details for the file typer_builder-0.0.8-py3-none-any.whl
.
File metadata
- Download URL: typer_builder-0.0.8-py3-none-any.whl
- Upload date:
- Size: 9.8 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.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bffb90f314c95628a684273179e21ae3e924cde85b94cee8308b86658ac2fb2f |
|
MD5 | 8ed3af34dd39b98bbc1f6f6ad78a9161 |
|
BLAKE2b-256 | e2f6128d5c779e9069453b5aa83bff40bfd9e70337e00afea4d6b754549b3e7c |