Python plugin system with dynamic loading of plugins
Project description
Python Dynamic Plugins
In a nutshell Python Dynamic plugins
is a small library for manage Python plugins dynamically.
Quickstart
This library has two main parts:
- Pip utils
- Dynamic library loading
Pip utils
This module provides some utilities for pip from Python.
Dynamic library loading
This library load, following some contrains, Python packages and load specific symbols from them. This is: functions, class definitions, variables, etc
The main idea of the project is to be able to create a plugin system which is easy to use and easy to maintain.
Install
> pip install dynamic-plugins
Dynamic module load usage
For this example we'll use the demo package demo_module
that you can find in the demo_plugins
folder.
First you need to install the demo package
> cd demo_plugins/demo_module
> pip install . -U
Load symbols
In this example we'll load the hello_world()
function dynamically from the demo_module
package.
from dynamic_plugins import get_extensions
def main():
for package_name, package_content in get_extensions("demo-", sub_package="setup",symbols="hello_world").items():
print(package_name)
print(package_content["module_object"])
for fn in package_content["symbols"]:
print(fn())
if __name__ == '__main__':
main()
Pip utils
List installed packages
from dynamic_plugins import list_installed_packages
def main():
for package_name, package_version in list_installed_packages().items():
print(f"{package_name} {package_version}")
if __name__ == '__main__':
main()
Install a package from Pypi
from dynamic_plugins import install_library_from_pypi
def main():
install_library_from_pypi("requests")
if __name__ == '__main__':
main()
Install a package from local folder
from dynamic_plugins import install_library_from_path
def main():
install_library_from_path("/path/to/package")
if __name__ == '__main__':
main()
License
Dictionary Search is Open Source and available under the MIT.
Contributions
Contributions are very welcome. See CONTRIBUTING.md or skim existing tickets to see where you could help out.
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
File details
Details for the file dynamic-plugins-1.0.10.tar.gz
.
File metadata
- Download URL: dynamic-plugins-1.0.10.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f24b1d1fa679edc48acc7e68f0abbf9786dcdf67a1a260072ec4f6410dac02e |
|
MD5 | bc3295502b7d798aa9a636e6ed3f57be |
|
BLAKE2b-256 | 632599b386f33a98492a4f375a20e81a492b88a6f25949a0fad1ee1ed99be3d8 |