Popularity
4.8
Declining
Activity
0.0
Stable
1,075
42
146

Code Quality Rank: L5
Programming language: Python
License: BSD 3-clause "New" or "Revised" License
Tags: Miscellaneous    
Latest version: v1.0.0

pluginbase alternatives and similar packages

Based on the "Miscellaneous" category.
Alternatively, view pluginbase alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of pluginbase or a related project?

Add another 'Miscellaneous' Package

README

PluginBase

PluginBase is a module for Python that enables the development of flexible plugin systems in Python.

Step 1:

from pluginbase import PluginBase
plugin_base = PluginBase(package='yourapplication.plugins')

Step 2:

plugin_source = plugin_base.make_plugin_source(
    searchpath=['./path/to/plugins', './path/to/more/plugins'])

Step 3:

with plugin_source:
    from yourapplication.plugins import my_plugin
my_plugin.do_something_cool()

Or alternatively:

my_plugin = plugin_source.load_plugin('my_plugin')
my_plugin.do_something_cool()