Simple extension system for extending Takumi framework
Project description
Simple extension system for extending Takumi framework.
Install
$ pip install takumi-ext
Example
Here is an extension for running codes before app starts and after app exists.
app = AppRunner() app_runner_ext = ext['app-runner'] if app_runner_ext: runner_ext = app_runner_ext(app) app.cfg.set('when_ready', lambda x: runner_ext.on_start()) app.cfg.set('on_exit', lambda x: runner_ext.on_exit()) app.run()
To implement this extension:
# package name runner_ext class RunnerExt(ExtBase): name = 'app-runner' def __init__(self, app): self.app = app def on_start(self): print('app starting...') def on_exit(self): print('app existing...')
Add the following config to app.yml to use the extension:
extensions: - runner_ext
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
takumi_ext-0.1.1.tar.gz
(2.3 kB
view hashes)
Built Distribution
Close
Hashes for takumi_ext-0.1.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e94bc89b7d634527e8b377228f672b64409f4e9b86df129622321cf1f272366c |
|
MD5 | 712a221930a41454c9fa0ba56b55c99f |
|
BLAKE2-256 | b721be71fb2403f2e3782a3a04f0871770124c356dbd855557bc3ca95f278ea9 |