Skip to content

mhindery/dj-compression-middleware

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI - Latest version PyPI - Python versions PyPI - Versions from Framework Classifiers

Dj Compression Middleware

Note: This project and repo was originally a fork of the project django-compression-middleware. As the project did not seem maintained anymore, I forked the project in order to get some open PR's and issues resolved. Credit goes to the original creator: Friedel Wolff. In the meantime I have refactored a lot of the code.

This package provides Django middleware to compress responses with gzip, brotli, or zstd. It is a replacement of Django's built-in GZipMiddleware as it supports more compression algorithms. Both normal and streaming responses get compressed.

Compression of responses happens at runtime, if you are looking to compress your static assets, look at e.g. Django-compressor, WhiteNoise.

The middleware looks at a requests' Accept-Encoding header in order to select appropriate compression. It will choose one using this order of preference:

  • Zstandard (zstd)
  • Brotli (br)
  • gzip (gzip)

Installation and usage

Install the package:

uv add dj-compression-middleware
# or
pip install dj-compression-middleware

Add dj_compression_middleware.middleware.CompressionMiddleware to your middleware:

MIDDLEWARE = [
    # ...
    'dj_compression_middleware.middleware.CompressionMiddleware',
    # ...
]

Remove GZipMiddleware and BrotliMiddleware if they were present, as this middleware replaces them.

Excluding views from compression

When you want to disable compression for a single view, it can be done like this for either a function-based or class-based view:

from dj_compression_middleware import no_compress, NoCompressMixin

@no_compress
def index_view(request):
    ...


class MyView(NoCompressMixin, View):
    ...

Customizing the middleware

You can subclass the middleware and customize some attributes of it to tweak its behaviour, e.g. to select the compression level:

class CustomCompressionMiddleware(CompressionMiddleware):
    # Tweak compression settings
    ZSTD_LEVEL = 7
    BROTLI_QUALITY = 4
    GZIP_COMPRESSLEVEL = 6
    ZLIB_COMPRESSLEVEL = 8

For even more customization, you can override the init method and modify the COMPRESSORS to an ordered set of your own preferred compression algorithms.

Development

Setup a virtual environment:

uv sync --frozen --all-extras --all-groups

Run linting:

uv run ruff check --no-fix
uv run ty check

Run the tests:

uv run pytest

About

Django middleware to compress responses using several algorithms.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 100.0%