An extension which allows you to easily gzip your Sanic responses.
Project description
sanic_compress is an extension which allows you to easily gzip your Sanic responses. It is a port of the Flask-Compress extension.
Installation
Install with pip:
pip install sanic_compress
Usage
Usage is simple. Simply pass in the Sanic app object to the Compress class, and responses will be gzipped.
from sanic import Sanic
from sanic_compress import Compress
app = Sanic(__name__)
Compress(app)
Alternatively, if you want to initialize the Compress class later, you can do so with the init_app method;
compress = Compress()
app = Flask(__name__)
compress.init_app(app)
Options
Within the Sanic application config you can provide the following settings to control the behavior of sanic_compress. None of the settings are required.
COMPRESS_MIMETYPES: Set the list of mimetypes to compress here. - Default: ['text/html','text/css','text/xml','application/json','application/javascript']
COMPRESS_LEVEL: Specifies the gzip compression level (1-9). - Default: 6
COMPRESS_MIN_SIZE: Specifies the minimum size (in bytes) threshold for compressing responses. - Default: 500
A higher COMPRESS_LEVEL will result in a gzipped response that is smaller, but the compression will take longer.
Example of using custom configuration:
from sanic import Sanic
from sanic_compress import Compress
app = Sanic(__name__)
app.config['COMPRESS_MIMETYPES'] = set(['text/html', 'application/json'])
app.config['COMPRESS_LEVEL'] = 4
app.config['COMPRESS_MIN_SIZE'] = 300
Compress(app)
Note about gzipping static files:
Sanic is not at heart a file server. You should consider serving static files with nginx or on a separate file server.
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
File details
Details for the file sanic_compress-0.1.1.tar.gz
.
File metadata
- Download URL: sanic_compress-0.1.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 350123350caad62a6815f70b485fd98b6c3e94c1cdaefc4a192d3075d540522b |
|
MD5 | 6b40438ddc77c1a998bb7c5277e1f7aa |
|
BLAKE2b-256 | 4c76285235ef1755b75936bb16b5f9424b7ac60af8949f865fea63287b863cef |