Quick Start¶
Entering the
exampledirectory, you will find the following directory structure, the pluginhelloinsidepluginsdirectory:example ├── app.py └── plugins └── hello ├── __init__.py └── plugin.jsonThe plugin manager is loaded in the
app.pyfile, and the hello plugin is started:from flask import Flask from flask_plugin import PluginManager app = Flask(__name__) manager = PluginManager(app) plugin = manager.find(id_='962e3b6cd8b74d02a5a02f1e3651ef87') if plugin: manager.load(plugin) manager.start(plugin) ... # API Management code here app.run()
Define plugin info in
SayHello/plugin.jsonfile:{ "id": "962e3b6cd8b74d02a5a02f1e3651ef87", "domain": "hello", "plugin": { "name": "Greeting", "author": "Doge", "summary": "Hello Flask-Plugin." }, "releases": [] }
Instantiated the
PlugininSayHello/__init__.pyand define the route as you did inFlask:from flask_plugin import Plugin from flask import redirect, url_for plugin = Plugin() ... # Other routes defined here @plugin.route('/say/<string:name>', methods=['GET']) def say(name: str): return 'Hello ' + name
Accessing
/plugins/hello/and see the greeting:Hello Anonymous!
Stop the plugin with accessing
/api/stop/347336b4fcdd447985aec57f2bc5793c, check url above again, and get aHTTP 404error.