Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/relrin/sanic-base-extension

Flask-like extension support for Sanic framework
https://github.com/relrin/sanic-base-extension

extension python sanic

Last synced: 30 days ago
JSON representation

Flask-like extension support for Sanic framework

Awesome Lists containing this project

README

        

sanic-base-extension
####################
Flask-like extension support for Sanic framework

Features
========
- Flask-like style initializing and using with Sanic applications
- Easy to write a new extension and use it later

Installation
============
This package should be installed using pip: ::

pip install sanic-base-extension

Example
=======
.. code-block:: python

from sanic import Sanic
from sanic_base_ext import BaseExtension

class CustomExtension(BaseExtension):
extension_name = app_attribute = 'custom'

def hello(self, user):
print("Hello, {}!".format(user))

app = Sanic(__name__)
CustomExtension(app) # available via `app.custom` or `app.extensions['custom']`
app.ctx.custom.hello('world') # Hello, world!

License
=======
The sanic-base-extension is published under BSD license. For more details read LICENSE_ file.

.. _links:
.. _LICENSE: https://github.com/Relrin/sanic-base-extension/blob/master/LICENSE