Skip to main content

Simple extension system for extending Takumi framework

Project description

https://travis-ci.org/elemepi/takumi-ext.svg?branch=master

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


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.2.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

takumi_ext-0.1.2-py2.py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 2 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