Skip to main content

Register Typer CLI applications to a main application to make it more pluggable.

Project description

typer-plugins

Ruff PyPI Version License Python Versions Actions status

Register Typer CLI applications to a main root application to make it more pluggable.

This is inspired by click-plugins so I have created a similar package to register Typer CLI based applications in a similar plugin format. It's slightly different how to use it and I'm still actively working on this project to improve the process of registering, detecting duplicate plugins. Natively running a plugin with broken code will not break the full application, only when someone attempts to execute that specific command.

But now you can manage your Typer CLI applications with plugin based architecture, managing separate sub-command groups in separate Git repositories.

How to use

  1. pip install typer-plugins
  2. Import the package in your main application that you want to register all your plugins into
import typer
from typer_plugins import register_plugins # Import the register_plugins function

app = typer.Typer(invoke_without_command=True)
register_plugins(app=app, entrypoint="exampleapp.plugins") # Run the function after creating your main `app`. This entrypoint should be used by all your applications.

if __name__ == "__main__":
    app()
  1. Create your plugin(s) and ensure you either create an entrypoint, here is an example using pyproject.toml with Poetry:
[tool.poetry.plugins."exampleapp.plugins"]
"plugin-a" = "plugin_a.app:app"

This format assumes your plugin is called plugin_a and there is a python file called app.py with the Typer app created assigned to a variable named app. You can find a working example in the examples directory

  1. As long as your entrypoint matches up with the poetry plugin configured in the pyproject.toml file, you can now proceed to pip install <your-plugin> whether it be locally or via a package distributer. It will then register from your main application where you use the register_plugins function.
$ python my-app plugin-a --help
Usage: my-app plugin-a [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  root-command-a
  root-command-b
  some-commands
  some-other-commands

Development / Contributing

TO-DO

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

typer_plugins-0.1.1.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

typer_plugins-0.1.1-py3-none-any.whl (7.9 kB view hashes)

Uploaded Python 3

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