You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ext_compress.py 216B

12345678910
  1. from flask import Flask
  2. def init_app(app: Flask):
  3. if app.config.get('API_COMPRESSION_ENABLED', False):
  4. from flask_compress import Compress
  5. compress = Compress()
  6. compress.init_app(app)