Add compress to Sanic response as decorator
Project description
sanic-gzip
A Sanic plugin to manage compression as a decorator
Installation
Install with pip
:
pip install sanic-gzip
Usage
Usage is as simple as a decorator before your function
from sanic import Sanic
from sanic_gzip import compress
app = Sanic(__name__)
compress = Compress()
@app.get("/logs")
@compress.compress()
async def my_verbose_function(request):
The current version supports both gzip and deflate algorithms.
Options
Config options are to be setted as init argument:
- Compression min. size
- Compression level
- MIME types impacted
- Number of threadused for compression
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
sanic_gzip-0.4.1.tar.gz
(4.2 kB
view hashes)
Built Distribution
Close
Hashes for sanic_gzip-0.4.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 899b3f3342d8331894aefccfa54677cb54a39cf384faf7228354c80dee634a60 |
|
MD5 | 9922db4d6353c87652619813cdae6db3 |
|
BLAKE2b-256 | 6bc3659cf5b5f58b23a7ffef913a5e77cca16d6c739d5d4455b369e13c432d38 |