A simple plugin system for python with async hooks supported
Project description
simplug
A simple plugin system for python with async hooks supported
Installation
pip install -U simplug
Examples
A toy example
from simplug import Simplug
simplug = Simplug('project')
class MySpec:
"""A hook specification namespace."""
@simplug.spec
def myhook(self, arg1, arg2):
"""My special little hook that you can customize."""
class Plugin_1:
"""A hook implementation namespace."""
@simplug.impl
def myhook(self, arg1, arg2):
print("inside Plugin_1.myhook()")
return arg1 + arg2
class Plugin_2:
"""A 2nd hook implementation namespace."""
@simplug.impl
def myhook(self, arg1, arg2):
print("inside Plugin_2.myhook()")
return arg1 - arg2
simplug.register(Plugin_1, Plugin_2)
results = simplug.hooks.myhook(arg1=1, arg2=2)
print(results)
inside Plugin_1.myhook()
inside Plugin_2.myhook()
[3, -1]
Note that the hooks are executed in the order the plugins are registered. This is different from pluggy
.
A complete example
See examples/complete/
.
Running python -m examples.complete
gets us:
Your food. Enjoy some egg, egg, egg, salt, pepper, egg, egg
Some condiments? We have pickled walnuts, steak sauce, mushy peas, mint sauce
After install the plugin:
> pip install --editable examples.complete.plugin
> python -m examples.complete # run again
Your food. Enjoy some egg, egg, egg, salt, pepper, egg, egg, lovely spam, wonderous spam
Some condiments? We have pickled walnuts, mushy peas, mint sauce, spam sauce
Now this is what I call a condiments tray!
Usage
Definition of hooks
Hooks are specified and implemented by decorating the functions with simplug.spec
and simplug.impl
respectively.
simplug
is initialized by:
simplug = Simplug('project')
The 'project'
is a unique name to mark the project, which makes sure Simplug('project')
get the same instance each time.
Note that if simplug
is initialized without project
, then a name is generated automatically as such project-0
, project-1
, etc.
Hook specification is marked by simplug.spec
:
simplug = Simplug('project')
@simplug.spec
def setup(args):
...
simplug.spec
can take some arguments:
required
: Whether this hook is required to be implemented in pluginsresult
: An enumerator to specify the way to collec the results.SimplugResult.ALL
: Collect all results from all pluginsSimplugResult.ALL_AVAILS
: Get all the results from the hook, as a list, not includingNone
sSimplugResult.ALL_FIRST
: Executing all implementations and get the first resultSimplugResult.ALL_LAST
: Executing all implementations and get the last resultSimplugResult.TRY_ALL_FIRST
: Executing all implementations and get the first result, if no result is returned, returnNone
SimplugResult.TRY_ALL_LAST
: Executing all implementations and get the last result, if no result is returned, returnNone
SimplugResult.ALL_FIRST_AVAIL
: Executing all implementations and get the first non-None
resultSimplugResult.ALL_LAST_AVAIL
: Executing all implementations and get the last non-None
resultSimplugResult.TRY_ALL_FIRST_AVAIL
: Executing all implementations and get the first non-None
result, if no result is returned, returnNone
SimplugResult.TRY_ALL_LAST_AVAIL
: Executing all implementations and get the last non-None
result, if no result is returned, returnNone
SimplugResult.FIRST
: Get the first result, don't execute other implementationsSimplugResult.LAST
: Get the last result, don't execute other implementationsSimplugResult.TRY_FIRST
: Get the first result, don't execute other implementations, if no result is returned, returnNone
SimplugResult.TRY_LAST
: Get the last result, don't execute other implementations, if no result is returned, returnNone
SimplugResult.FIRST_AVAIL
: Get the first non-None
result, don't execute other implementationsSimplugResult.LAST_AVAIL
: Get the last non-None
result, don't execute other implementationsSimplugResult.TRY_FIRST_AVAIL
: Get the first non-None
result, don't execute other implementations, if no result is returned, returnNone
SimplugResult.TRY_LAST_AVAIL
: Get the last non-None
result, don't execute other implementations, if no result is returned, returnNone
SimplugResult.SINGLE
: Get the result from a single implementationSimplugResult.TRY_SINGLE
: Get the result from a single implementation, if no result is returned, returnNone
- A callable to collect the result, take
calls
as the argument, a 3-element tuple with first element as the implementation, second element as the positional arguments, and third element as the keyword arguments.
Hook implementation is marked by simplug.impl
, which takes no additional arguments.
The name of the function has to match the name of the function by simplug.spec
. And the signatures of the specification function and the implementation function have to be the same in terms of names. This means you can specify default values in the specification function, but you don't have to write the default values in the implementation function.
Note that default values in implementation functions will be ignored.
Also note if a hook specification is under a namespace, it can take self
as argument. However, this argument will be ignored while the hook is being called (self
will be None
, and you still have to specify it in the function definition).
Loading plugins from setuptools entrypoint
You have to call simplug.load_entrypoints(group)
after the hook specifications are defined to load the plugins registered by setuptools entrypoint. If group
is not given, the project name will be used.
The plugin registry
The plugins are registered by simplug.register(*plugins)
. Each plugin of plugins
can be either a python object or a str denoting a module that can be imported by importlib.import_module
.
The python object must have an attribute name
, __name__
or __class.__name__
for simplug
to determine the name of the plugin. If the plugin name is determined from __name__
or __class__.__name__
, it will be lowercased.
If a plugin is loaded from setuptools entrypoint, then the entrypoint name will be used (no matter what name is defined inside the plugin)
You can enable or disable a plugin temporarily after registration by:
simplug.disable('plugin_name')
simplug.enable('plugin_name')
You can use following methods to inspect the plugin registry:
simplug.get_plugin
: Get the plugin by namesimplug.get_all_plugins
: Get a dictionary of name-plugin mappings of all pluginssimplug.get_all_plugin_names
: Get the names of all plugins, in the order it will be executed.simplug.get_enabled_plugins
: Get a dictionary of name-plugin mappings of all enabled pluginssimplug.get_enabled_plugin_names
: Get the names of all enabled plugins, in the order it will be executed.
Calling hooks
Hooks are call by simplug.hooks.<hook_name>(<arguments>)
and results are collected based on the result
argument passed in simplug.spec
when defining hooks.
Async hooks
It makes no big difference to define an async hook:
@simplug.spec
async def async_hook(arg):
...
# to supress warnings for sync implementation
@simplug.spec(warn_sync_impl_on_async=False)
async def async_hook(arg):
...
One can implement this hook in either an async or a sync way. However, when implementing it in a sync way, a warning will be raised. To suppress the warning, one can pass a False
value of argument warn_sync_impl_on_async
to simplug.spec
.
To call the async hooks (simplug.hooks.async_hook(arg)
), you will just need to call it like any other async functions (using asyncio.run
, for example)
API
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file simplug-0.2.3.tar.gz
.
File metadata
- Download URL: simplug-0.2.3.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.6 Linux/5.15.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 280425f3c908fd6b323d93e84660ff4d954933aff91ac1f2c94104332f908445 |
|
MD5 | 081b8b9a5d5b5f1a9636b5cf45c00bd6 |
|
BLAKE2b-256 | 7f39f9dadb8dc0e98aa9e3e4552bd4ccad2c1a345d19d2b0e43107bd8128a4d5 |
File details
Details for the file simplug-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: simplug-0.2.3-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.6 Linux/5.15.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a6cc408551dcf51e37df6c6e08129fea7cf984fea4e819f361011e050fe933e |
|
MD5 | d7832747bc8d80e53b3777f5031b6d85 |
|
BLAKE2b-256 | db23f587b4b186ba11dd478c67af3fed85422184f636a677cf2affea8da2bf86 |