A plugin-based microframework for highly reusable applications and their components
Project description
groundwork is a Python based microframework for highly reusable applications and their components.
Its functionality is based on exchangeable, documented and tested plugins and patterns.
It is designed to support any kind of Python application: command line scripts, desktop programs or web applications.
groundwork enables applications to activate and deactivate plugins during runtime and to control dynamic plugin behaviors like plugin status, used signals, registered commands and much more.
The functionality of plugins can easily be extended by the usage of inheritable patterns. Thus, groundwork supports developers with time-saving solutions for:
Command line interfaces
Loose inter-plugin communication via signals and receivers
Shared objects to provide and request content to and from other plugins
Static and dynamic documents for an overall documentation
Example
The following code defines a plugin with command line support and creates a groundwork application which activates the plugin:
from groundwork import App from groundwork.patterns import GwCommandsPattern class MyPlugin(GwCommandsPattern): def _init_(self, *args, **kwargs): self.name = "My Plugin" super().__init__(*args, **kwargs) def activate(self): self.commands.register(command='hello', description='prints "hello world"', function=self.greetings) def greetings(self): print("Hello world") if __name__ == "__main__": my_app = App(plugins=[MyPlugin]) # Creates app and registers MyPlugin my_app.plugins.activate(["My Plugin"]) # Initialise and activates 'My Plugin' my_app.commands.start_cli() # Starts the command line interface
The following commands can be used on a command line now:
python my_app.py hello # Prints 'Hello world' python my_app.py # Prints a list of available commands python my_app.yp hello -h # Prints syntax help for the hello command
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 Distributions
Hashes for groundwork-0.1.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2e96fb5cddd72e76b598b9579a40166ef3cf7136273ccec5cf2761175307aa9 |
|
MD5 | fdb32a1934db143602a6263ef8bdd797 |
|
BLAKE2b-256 | e42e009987b4927df7de23c7812ea70420501788720e70d05340870a445e1681 |
Hashes for groundwork-0.1.10-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c3cc3e1a4537402906054d00fc68baf5ff149a3d0f275e4661b43e20d75de58 |
|
MD5 | d581066cfb7df074212a0f64e2613f38 |
|
BLAKE2b-256 | 1ff6a5894c5aa17da5371483c63ebf224abc7b217a4694bfbf2ba306a5e442be |