Skip to main content

Django middleware for compressing HTTP responses with Zstandard, Brotli, or Gzip.

Project description

https://img.shields.io/github/actions/workflow/status/adamchainz/django-http-compression/main.yml.svg?branch=main&style=for-the-badge https://img.shields.io/badge/Coverage-100%25-success?style=for-the-badge https://img.shields.io/pypi/v/django-http-compression.svg?style=for-the-badge https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge pre-commit

Django middleware for compressing HTTP responses with Zstandard, Brotli, or Gzip.

For a bit of background, see the introductory blog post.


Work smarter and faster with my book Boost Your Django DX which covers many ways to improve your development experience.


Requirements

Python 3.9 to 3.14 supported.

Django 4.2 to 6.0 supported.

From Python 3.14, Zstandard support requires libzstd to be linked into Python. (uv’s Python distributions include it on Unix.)

Installation

  1. Install with pip:

    python -m pip install django-http-compression

To include Brotli support, add the brotli extra to pull in the brotli package:

python -m pip install 'django-http-compression[brotli]'

Most browsers support Zstandard (MDN), but you may want to include Brotli as an option for clients that do not.

  1. Add django-http-compression to your INSTALLED_APPS:

    INSTALLED_APPS = [
        ...,
        "django_http_compression",
        ...,
    ]
  2. Add the middleware:

    MIDDLEWARE = [
        ...,
        "django_http_compression.middleware.HttpCompressionMiddleware",
        ...,
    ]

    The middleware should be above any that may modify your HTML, such as those of django-debug-toolbar or django-browser-reload. Remove any other middleware that will encode your responses, such as Django’s GZipMiddleware.

API

django_http_compression.middleware.HttpCompressionMiddleware

This middleware is similar to Django’s GZipMiddleware, but with extra coding support. It compresses responses with one of three codings, depending on what the client supports per the request’s Accept-Encoding header:

  • Zstandard (zstd) - on Python 3.14+.

  • Brotli (br) - if the brotli extra is installed.

  • Gzip (gzip)

See the MDN content-encoding documentation for more details on these codings and their browser support.

Codings are prioritized based on any q factors sent by the client, for example accept-encoding: gzip;q=1.0, br;q=0.9 will prefer gzip over Brotli. After that, the middleware prefers the algorithms in the order of the above list, with Zstandard being the most preferred. This is because it’s the most performant, offering similar compression to Brotli in about half the time (per CloudFlare’s testing).

In practice, modern browsers do not send q factors and nearly all support Zstandard, so that will generally be selected (on Python 3.14+).

The middleware skips compression if any of the following are true:

  • The content body is less than 200 bytes.

  • The response already has a Content-Encoding header.

  • The request does not have a supported accept-encoding header.

  • Compression lengthens the response (for non-streaming responses).

If the response has an etag header, the etag is made weak to comply with RFC 9110 Section 8.8.1.

For the Gzip coding, the middleware mitigates some attacks using the Heal the Breach (HTB) technique, as used in Django’s GzipMiddleware. This fix adds a small number of random bytes to each response. To change the maximum number of random bytes added to responses, subclass the middleware and change the gzip_max_random_bytes attribute appropriately (default 100).

History

Django has supported Gzip compression since before version 1.0, from this commit (2005). Since then, compression on the web has evolved in Brotli (2013) and Zstandard (2015), with browsers adding support for both.

Brotli support on Python has always required a third-party package, making it a little inconvenient. But with Python 3.14 adding Zstandard support to the standard library, it’s much easier to support a modern, efficient compression algorithm.

This project exists as an evolution of Django’s GZipMiddleware, with the aim to provide a base for adding (at least) Zstandard support to Django itself. It pulls inspiration from the django-compression-middleware package.

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

django_http_compression-1.1.0.tar.gz (14.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_http_compression-1.1.0-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file django_http_compression-1.1.0.tar.gz.

File metadata

  • Download URL: django_http_compression-1.1.0.tar.gz
  • Upload date:
  • Size: 14.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for django_http_compression-1.1.0.tar.gz
Algorithm Hash digest
SHA256 c146f3c3c6bb122f03914f2c4d3f6cd5db0b452c13f0d7314afc72a821b59d5b
MD5 c4cb1d859e30b88f152d53174bb3ff8a
BLAKE2b-256 5f856f934a92e6ed8451eeec0bed2d815e03ebaf60ec227b068670540304b83f

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_http_compression-1.1.0.tar.gz:

Publisher: main.yml on adamchainz/django-http-compression

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_http_compression-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_http_compression-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 55cbad049cd847009fc46231ab56c58038e0cb0b8ac397c7a4ad6b6f61472c17
MD5 f5d855a494749c38962d6d0cf9b7c958
BLAKE2b-256 76c81748f0114d294cb8d5feaa5598eb340756d5aa56cb559129f8f1e842572f

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_http_compression-1.1.0-py3-none-any.whl:

Publisher: main.yml on adamchainz/django-http-compression

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page