Flask-like extension support for Sanic framework
Project description
Forked from and based on https://github.com/Relrin/sanic-base-extension (sanic-base-extension) Extensions were forked and modified to keep the code updated with the latest version of dependecnies and to add additional functionality
sanic-ext-base
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-ext-base
Example
from sanic import Sanic
from sanic_ext import BaseExtension
class CustomExtension(BaseExtension):
extension_name = app_attribute = 'custom'
def hello(self, user):
print("Hello, {}!".format(user))
app = Sanic(__name__)
CustomExtension() # available via `app.custom` or `app.extensions['custom']`
app.custom.hello('world') # Hello, world!
License
The sanic-ext-base is published under BSD license. For more details read LICENSE file.
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 Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sanic-ext-base-0.1.0.tar.gz.
File metadata
- Download URL: sanic-ext-base-0.1.0.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc111f8b5f8f48beb20c76b3bff480aec86624ae164330c23104bab25a71df40
|
|
| MD5 |
870eb4907e0432a711292451942f16b8
|
|
| BLAKE2b-256 |
695e6bc1c760f01cd31cdb97b5c836d7a276089715e8800474dcd4bee95d70aa
|
File details
Details for the file sanic_ext_base-0.1.0-py3-none-any.whl.
File metadata
- Download URL: sanic_ext_base-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed4d3a21b8d2eb58409eeac54101b71cb4bad1c991e43f6ebffd812571253c09
|
|
| MD5 |
dd4096fda283ffca4c61f5efb39b45ab
|
|
| BLAKE2b-256 |
bf1094191ec152592013f512a55ea9bc7d6bb3ac3de4dd780d25d226137d6554
|