Skip to content

FastPluggy Official Plugins

This bundle includes FastPluggy’s pre-approved plugins for extending your application.

Installation

Prerequisites

  • Python 3.10 or higher
  • pip

Core package

Install the FastPluggy core with:

pip install fastpluggy

Bundle

Install all pre-approved plugins in one go with:

pip install fastpluggy-plugins

Included Plugins

This page was auto-generated. Click through for each plugin’s documentation

Activation

FastPluggy will only load plugins listed in the FP_PLUGINS environment variable. You can specify:

  • A comma-separated list of plugin names, for example:

    export FP_PLUGINS="tasks_worker,ui_tools,crud_tools"
    

  • The wildcard * to load all pre-approved plugins:

    export FP_PLUGINS="*"
    

⚙️ Tip: If you leave FP_PLUGINS unset or empty, no plugins will be activated.