Plugins for Eventum
Package includes next types of plugins for Eventum:
- Input plugins
- Event plugins
- Output plugins
Current list of implemented plugins and their description: https://eventum-generatives.github.io/Website/docs/plugins/
pip install eventum-plugins
When developing new plugins you should follow next clauses:
- Plugin is a separate module within a package
- Plugin class should inherit base class
- Each plugin should define its configuration class that inherits base config class
- Plugin module should contain defined
PLUGIN_CLASS
andCONFIG_CLASS
variables (it automatically marks plugins as plugable)
If you want your plugin to be merged, please:
- write and provide documentation for your plugin by making PR to https://github.com/Eventum-Generatives/Website
- write tests for your plugin