Skip to main content

Is a simple plugin manager that will dynamically load plugins from a directory given a config or env variable with dynamic kwargs to pass for plugin loading.

Project description

plugo

plugo is a simple plugin manager that dynamically loads plugins from a directory, a json configuration file e.g.plugins_config.json, an environment variable ENABLED_PLUGINS, or a predefined list (PLUGINS). It allows for dynamic keyword arguments (kwargs) to be passed during plugin loading, making it flexible for various applications like Flask

current_version = "v4.1.1"

Quickstart

Install

pip install plugo

Create a new plugin

Plugins will be created relative to the path you run the commands from.

Base Plugin

plugo new-base-plugin

Flask HTML Plugin

plugo new-ui-plugin

Flask RESTX API Plugin

plugo new-api-plugin

Optional Parameters

  • --name: Name of the Plugin. This will default the Cookiecutter answer
  • --output-dir: Relative path for output directory for the new plugin. Defaults to ./api/plugins.
Example Creation with Optional Parameters
plugo new-base-plugin --name="Example Plugin" --output-dir="plugins"

Hot Reload

Hot reload happens automatically when you call load_plugins(). No additional setup needed!

1. Enable Hot Reload (Default)

Hot reload is enabled by default. The watcher will automatically monitor your plugin directories for changes.

2. Disable Hot Reload

To disable hot reload, set the environment variable:

export ENABLE_PLUGIN_HOT_RELOAD=false

Or in your Python code:

import os
os.environ["ENABLE_PLUGIN_HOT_RELOAD"] = "false"

Configuration Options

PluginWatcher

The PluginWatcher class accepts the following parameters:

  • watch_paths (list[str]): List of directory paths to watch for changes
  • reload_callback (Callable): Function to call when changes are detected
  • debounce_seconds (float): Time to wait before reloading after a change (default: 1.0)
  • logger (Optional[logging.Logger]): Logger instance for logging messages
create_reload_callback

The create_reload_callback function creates a callback for reloading plugins:

  • plugin_directory (Optional[str]): The path to the directory containing plugin folders
  • config_path (Optional[str]): The path to the plugin configuration JSON file
  • logger (Optional[logging.Logger]): Logger instance for logging messages
  • clear_modules (bool): Whether to clear plugin modules from sys.modules before reloading (default: True)
  • plugin_module_prefixes (Optional[list[str]]): List of module name prefixes to clear (e.g., ['plugins.', 'my_plugins.']). If None and plugin_directory is provided, will use the plugin directory basename
  • **kwargs (Any): Additional keyword arguments passed to each plugin's init_plugin function

File Types Monitored

The watcher monitors changes to:

  • Python files (.py)
  • Configuration files (.json)
  • Requirements files (.txt)

The following files are ignored:

  • Compiled Python files (.pyc, .pyo)
  • Temporary files (.swp, .tmp)
  • __pycache__ directories

Limitations

Flask Blueprint Reloading

IMPORTANT: Flask has a strict limitation where blueprints cannot be re-registered after the application has handled its first request. This means hot reload will fail with errors like:

ValueError: The name 'plugin_name' is already registered for a different blueprint

Recommended Solutions:

  1. Use Flask's built-in debug mode (recommended for development):

    • Flask's debug mode automatically reloads the entire application when files change
    • This provides full hot reload without blueprint conflicts
    • Set app.run(debug=True) or use the environment variable FLASK_DEBUG=1
  2. Design plugins without blueprints:

    • Use route decorators directly on the app object
    • Register routes dynamically without blueprints
    • This allows hot reload to work without conflicts
  3. Give blueprints unique names on each reload:

    • Append a timestamp or counter to blueprint names
    • Example: Blueprint(f'plugin_{time.time()}', __name__)
    • Note: This can lead to memory leaks over time
  4. Restart the application manually:

    • Disable hot reload (ENABLE_PLUGIN_HOT_RELOAD=false)
    • Manually restart the Flask application when plugins change

create_reload_callback Function

def create_reload_callback(
    plugin_directory: Optional[str] = None,
    config_path: Optional[str] = None,
    logger: Optional[logging.Logger] = None,
    clear_modules: bool = True,
    plugin_module_prefixes: Optional[list[str]] = None,
    **kwargs: Any,
) -> Callable[[], Optional[Set[str]]]:
    """
    Create a callback function for reloading plugins.
    
    Args:
        plugin_directory: The path to the directory containing plugin folders
        config_path: The path to the plugin configuration JSON file
        logger: Logger instance for logging messages
        clear_modules: Whether to clear plugin modules from sys.modules before reloading
        plugin_module_prefixes: List of module name prefixes to clear. Only modules
                               matching these prefixes will be cleared from sys.modules.
                               This prevents accidentally removing core modules.
        **kwargs: Additional keyword arguments passed to each plugin's init_plugin function
    
    Returns:
        A callable that reloads plugins and returns the set of loaded plugin names
    """

Example Plugin

Plugin Structure

All plugins have the following files:

  • metadata.json (Required)
  • __init__.py (Required)
  • plugin.py (Required)
  • pyproject.toml (Optional) or
  • requirements.txt (Optional)

Plugins can specify dependencies using either:

  • pyproject.toml (PEP 621 or Poetry format) - Preferred
  • requirements.txt (traditional pip format)
└── 📁sample_plugin
    └── __init__.py
    └── metadata.json
    └── plugin.py
    └── requirements.txt

plugin.py Example

The plugin.py must have a init_plugin function defined in it with any optional named kwargs (key word arguments) that can be referenced or passed in as context later.

# plugin.py
from flask import Blueprint

plugin_blueprint = Blueprint('sample_plugin', __name__, template_folder='templates', static_folder='static')

@plugin_blueprint.route('/sample_plugin')
def plugin_route():
    return "Hello from sample_plugin!"


def init_plugin(app):
    app.register_blueprint(plugin_blueprint, url_prefix='/plugins')

metadata.json Example

The metadata.json defines metadata about the plugin. A core consideration is plugin dependencies—a list of plugins in the same directory that are required to load before this plugin can load.

// metadata.json

{
    "name": "sample_plugin",
    "version": "1.0.0",
    "description": "A sample plugin",
    "identifier": "com.example.sample_plugin",
    "dependencies": [
        "test_env_plugin"
    ],
    "author": "Your Name",
    "core_version": ">=1.0.0"
}

Example Project

Project Structure
└── 📁flask_base_plugins
    └── 📁plugins
        └── 📁sample_plugin
            └── __init__.py
            └── metadata.json
            └── plugin.py
            └── requirements.txt
        └── 📁test_env_plugin
            └── __init__.py
            └── metadata.json
            └── plugin.py
            └── requirements.txt
        └── __init__.py
    └── __init__.py
    └── app.py
    └── plugins_config.json
Loading Plugins

Plugins can be loaded from a plugins_config.json file or a comma separated list Environment Variable ENABLED_PLUGINS. The major difference is the level of control. The Environment Variable will assume all plugins in the list are active, while the plugins_config.json file allows you to specify if a plugin is active or not e.g.:

// plugins_config.json

{
    "plugins": [
        {
            "name": "sample_plugin",
            "enabled": true
        },
        {
            "name": "another_plugin",
            "enabled": false
        }
    ]
}
Using the Plugo Plugin Manager

You can load your plugins with the load_plugins function by importing it into your project:

from plugo.services.plugin_manager import load_plugins

The load_plugins function takes the following parameters:

  • plugin_directory (Optional): The path to the directory containing plugin folders.
  • config_path (Optional): The path to the plugin configuration JSON file.
  • logger (Optional): A logging.Logger instance for logging.
  • **kwargs (Optional): Additional keyword arguments passed to each plugin's init_plugin function (e.g., app for Flask applications).
Extended Functionality
  • The Environment Variable (ENABLED_PLUGINS): Load plugins specified in a comma-separated list in the ENABLED_PLUGINS environment variable.
  • The Predefined PLUGINS List variable: Allows you to Load plugins defined in a PLUGINS list variable using ImportClassDetails and PluginConfig.
Defining Plugins with ImportClassDetails and PluginConfig

You can define plugins programmatically using ImportClassDetails and PluginConfig and PLUGINS.

from plugo.models.import_class import ImportClassDetails
from plugo.models.plugin_config import PluginConfig, PLUGINS

Data Classes

  • ImportClassDetails: Specifies the module path and class or function name to import.
  • PluginConfig: Holds the configuration for a plugin, including its name, import details, and status.
  • PLUGINS: A Singleton list, used to store PluginConfig instances for programmatic plugin loading.
Defining Plugins Programmatically

By using ImportClassDetails and PluginConfig, you have full control over how plugins are loaded in your application. This method allows you to specify plugins that might not be located in the default plugin directory or to programmatically activate or deactivate plugins based on certain conditions.

Example app.py:

# app.py

import os

from flask import Flask

from plugo.models.import_class import ImportClassDetails
from plugo.models.plugin_config import PluginConfig, PLUGINS
from plugo.services.consolidate_plugin_requirements import (
    consolidate_plugin_requirements,
)
from plugo.services.plugin_manager import load_plugins

app = Flask(__name__)

# Initialize your app configurations, database, etc.

# Paths (Optional if using plugin_directory and config_path)
plugin_directory = os.path.join(app.root_path, "plugins")
plugin_config_path = os.path.join(app.root_path, "plugins_config.json")

# Create a PluginConfig instance with the plugin's name, import details, and status
plugin_config = PluginConfig(
    plugin_name="test_env_plugin",
    # Create an ImportClassDetails instance specifying the module and class/function to import
    import_class_details=ImportClassDetails(
        module_path="plugo.examples.flask_base_plugins.plugins.test_env_plugin.plugin",
        module_class_name="init_plugin",
    ),
    status="active",
)

# Add the PluginConfig instance to the PLUGINS list
PLUGINS.append(plugin_config)

# Set Environment Variable for Plugins (Optional)
os.environ["ENABLED_PLUGINS"] = "SomeOtherPlugin"

# Load plugins based on the configuration
loaded_plugins = load_plugins(
    plugin_directory=plugin_directory,  # Optional
    config_path=plugin_config_path,  # Optional
    logger=None,  # Optional
    app=app,  # kwargs passed to init_plugin
)

# Create Dynamic requirements-plugins.txt for deployments
consolidate_plugin_requirements(
    plugin_directory=plugin_directory,
    loaded_plugins=loaded_plugins,
)


if __name__ == "__main__":
    app.run(debug=True)
Explanation
  • Import Statements: Import necessary modules and classes from plugo and Flask.
  • App Initialization: Create a Flask app instance.
  • Logging Setup: Configure logging for better visibility (optional). In our example we are using the default logger set up in the function.
  • Paths: Define plugin_directory and plugin_config_path (optional if not using directory or config file).
  • Define Programmatic Plugins: Use PluginConfig and ImportClassDetails to define plugins programmatically.
    • ImportClassDetails: Specify the module path and class/function name for the plugin.
    • PluginConfig: Create a configuration for the plugin, including its name, module and class details and status.
    • Add to PLUGINS: Append the PluginConfig instance to the PLUGINS list.
  • Environment Variable: Set ENABLED_PLUGINS to load plugins specified in the environment (optional assumed to be active if set and found in the plugin directory).
  • Load Plugins: Call load_plugins with the appropriate parameters.
    • If plugin_directory and config_path are not provided, the function relies on ENABLED_PLUGINS and PLUGINS.
  • Loaded Plugins: Print the set of loaded plugins for verification.
  • Run the App: Start the Flask application.
Consolidating Plugin Requirements

You can optionally consolidate custom requirements from plugins using the consolidate_plugin_requirements function:

from plugo.services.consolidate_plugin_requirements import consolidate_plugin_requirements

The intent of this function is to support deployments and allow only what is required to be installed into your deployment environment especially if you have multiple plugins for different clients. This function takes the following parameters:

  • plugin_directory (Required): The directory where plugins are stored.
  • loaded_plugins (Required): List of plugin names that were loaded (This is the output of the load_plugins function).
  • logger (Optional): Logger instance for logging messages.
  • output_file (Optional): The output file to write the consolidated requirements to. Defaults to requirements-plugins.txt
Create a Plugin in the Dependent Project

In your dependent project, define a new command and register it using the entry points in pyproject.toml.

Example Plugin Command (hello_world.py):

import click

@click.command()
def hello_world():
    """Say Hello, World!"""
    click.echo("Hello, World!")

Register the Plugin in pyproject.toml: Assuming my_project is you project and package name:

[tool.poetry.plugins."plugo.commands"]
"hello_world" = "my_project.hello_world:hello_world"

Reinstall the Project

poetry lock
poetry install

Verify the Extended CLI After installing both plugo and the dependent project:

plugo --help

which should show:

Usage: plugo [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  new-api-plugin   Create a new flask api plugin using Cookiecutter.
  new-base-plugin  Create a new plugin using Cookiecutter.
  new-ui-plugin    Create a new flask ui plugin using Cookiecutter.

Per-Plugin Virtual Environments (default since 3.x)

From plugo 3.x you can optionally isolate plugin dependencies into their own virtual environments, similar to how larger connector frameworks work.

This feature is opt-in and backwards compatible:

  • If you disable it, plugo behaves exactly as before:
  • load_plugins installs missing plugin dependencies into the current environment.
  • If you do nothing, each plugin gets its own lightweight venv based on:
    • the plugin name
    • the plugin version from metadata.json
    • the plugin’s Python dependency list (from pyproject.toml / requirements.txt)

When to use per-plugin venvs

Use per-plugin venvs when:

  • Different plugins require conflicting versions of the same library.
  • You ship or test plugins independently and don’t want them to pollute the host env.
  • You want a cleaner separation between your main app and plugin dependencies.

Performance Note: Virtual environments are created only for enabled plugins. Disabled plugins are skipped entirely during the loading process, so your environment won't grow unnecessarily even if you have many unused plugins configured.

If you’re happy with the original behavior, you candisable it.

# Enable per-plugin virtual environments
export PLUGO_USE_VENVS=false

Enabling per-plugin venvs

Per-plugin venvs are controlled purely via environment variables. No code changes are required in your app. It is enabled by default.

# Enable per-plugin virtual environments
export PLUGO_USE_VENVS=true

Customize where plugin venvs are stored:

# (Optional) Customize where plugin venvs are stored
export PLUGO_VENV_HOME="/path/to/.plugo/venvs"
# or use:
export VENV_HOME="/path/to/.plugo/venvs"

If none of the above (VENV_HOME or PLUGO_VENV_HOME) are set, the default base directory is:

./.plugo/venvs

Development

Install the local environment

python -m venv venv

Windows

venv/scripts/activate

Mac/Linux

source venv/bin/activate

Install the local Plugo project

Install poetry package manager

pip install poetry

Lock poetry dependencies

poetry cache clear pypi --all -n
poetry lock

Install plugo package via poetry (including dependencies)

poetry install

Test

pytest
coverage run -m pytest
coverage report
coverage html
mypy --html-report mypy_report .
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --format=html --htmldir="flake8_report/basic" --exclude=venv
flake8 . --count --exit-zero --max-complexity=11 --max-line-length=127 --statistics --format=html --htmldir="flake8_report/complexity" --exclude=venv

BumpVer

With the CLI command bumpver, you can search for and update version strings in your project files. It has a flexible pattern syntax to support many version schemes (SemVer, CalVer or otherwise). Run BumbVer with:

bumpver update --major
bumpver update --minor
bumpver update --patch

Build

poetry build

Publish

poetry publish

Automated PyPI Publishing

This project uses GitHub Actions to automatically publish to PyPI when a new version tag is pushed.

Setup (One-time configuration)

  1. Register a Trusted Publisher on PyPI:
    • Go to https://pypi.org/manage/account/publishing/
    • Click "Add a new pending publisher"
    • Fill in the following details:
      • PyPI Project Name: plugo
      • Owner: RyanJulyan (your GitHub username)
      • Repository name: plugo
      • Workflow name: publish.yml
      • Environment name: pypi
    • Click "Add pending publisher"

How it works

When you use bumpver to update the version:

bumpver update --patch  # or --minor, --major

This will:

  1. Update the version in pyproject.toml, src/plugo/__init__.py, and README.md
  2. Create a git commit with the version bump
  3. Create a git tag (e.g., 4.0.1)
  4. Push the tag to GitHub

GitHub Actions will automatically detect the new tag and:

  1. Build the distribution packages (wheel and source)
  2. Publish to PyPI using the trusted publisher authentication

Security

This approach uses OpenID Connect (OIDC) Trusted Publishers, which is more secure than API tokens because:

  • ✅ No credentials are stored in GitHub secrets
  • ✅ Only this specific workflow can publish
  • ✅ Only from this specific repository
  • ✅ PyPI automatically verifies the request is legitimate

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

plugo-4.1.1.tar.gz (56.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plugo-4.1.1-py3-none-any.whl (82.3 kB view details)

Uploaded Python 3

File details

Details for the file plugo-4.1.1.tar.gz.

File metadata

  • Download URL: plugo-4.1.1.tar.gz
  • Upload date:
  • Size: 56.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for plugo-4.1.1.tar.gz
Algorithm Hash digest
SHA256 45f8436f33514222fdb51980bc027e7105024acc954a917c7a63ba4373eb336a
MD5 bb05fa217820ba6ebe4d2df3e9b4de93
BLAKE2b-256 f3843cf043b6beee4cec260686fa7cccaee7acece2da4d37a4bae12e09f7cd0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for plugo-4.1.1.tar.gz:

Publisher: publish.yml on RyanJulyan/plugo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file plugo-4.1.1-py3-none-any.whl.

File metadata

  • Download URL: plugo-4.1.1-py3-none-any.whl
  • Upload date:
  • Size: 82.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for plugo-4.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 35f4556531055e150f45c9b85b110a6010f113486f0d03bf36508cba1a912099
MD5 b3f6d4e7d4449236a0a1c40bd0a6d117
BLAKE2b-256 f18ab30dcc7bfd3057ecf3725ce3635434214815d96316a415cae2520a124226

See more details on using hashes here.

Provenance

The following attestation bundles were made for plugo-4.1.1-py3-none-any.whl:

Publisher: publish.yml on RyanJulyan/plugo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page