Skip to main content

Lite plugins for simple Python 3 projects

Project description

LTPlugins - Lite plugins for simple Python 3 projects

Installation

pip install ltplugins

Usage examples

Imagine there is a directory plugins with two scripts: ltp_example.py and ltp_test.py For simplicity they contain a single main function:

def main(*args, **kwargs):
    print(args, kwargs)

LTPlugins could dynamically load them and unload during the runtime of the main script:

import ltplugins

p = ltplugins.LTPlugins(prefix='ltp_', path='plugins')
p.load('example')
p.load('test')
p.list(state='a', status=True)
p.name['example'].main('123', a=456)
p.run('test', 'main', '789', a=123)
p.unload('test')
p.reload('example')

Changelog

Date Version Remarks
2020.04.29 v1.0.0 Initial release
2020.04.29 v1.0.1 setup.py fix for README.md
2020.05.01 v1.1.0 List modules: all, loaded and unloaded
2020.05.01 v1.1.1 Readme update
2020.05.07 v1.1.2 Default status='a' in LTPlugins.list()
2020.05.07 v1.1.3 LTPlugins.list() now returns module names
2020.05.07 v1.1.4 LTPlugins.list(state='a', status=False)
2020.05.07 v1.1.4.1 fnmatch module reference removed
2020.05.07 v1.1.5 Dummy release to make PyPI happy

On any issues, questions and suggestions contact me: Mikhail Zakharov zmey20000@yahoo.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ltplugins-1.1.5.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

ltplugins-1.1.5-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page