Skip to main content

Use minify-html, the extremely fast HTML + JS + CSS minifier, with Django.

Project description

https://img.shields.io/github/actions/workflow/status/adamchainz/django-minify-html/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-minify-html.svg?style=for-the-badge https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge pre-commit

Use minify-html, the extremely fast HTML + JS + CSS minifier, with Django.


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.

Installation

  1. Install with pip:

    python -m pip install django-minify-html
  2. Add django-minify-html to your INSTALLED_APPS:

    INSTALLED_APPS = [
        ...,
        "django_minify_html",
        ...,
    ]
  3. Add the middleware:

    MIDDLEWARE = [
        ...,
        "django_minify_html.middleware.MinifyHtmlMiddleware",
        ...,
    ]

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

Reference

For information about what minify-html does, refer to its documentation.

django_minify_html.middleware.MinifyHtmlMiddleware

The middleware runs minify_html.minify() on the content of HTML responses. This function minifies HTML, and any inline JavaScript and CSS.

The middleware passes keyword arguments to minify() from its minify_args attribute, a dictionary of names to values. These correspond to the values in the Rust library’s Cfg structure, which have defaults in the Python library as visible in the source. By default the middleware overrides minify_css and minify_js to True. If you need to change an argument, subclass the middleware, replace minify_args, and use your subclass. For example, to preserve comments after minification:

from django_minify_html.middleware import MinifyHtmlMiddleware


class ProjectMinifyHtmlMiddleware(MinifyHtmlMiddleware):
    minify_args = MinifyHtmlMiddleware.minify_args | {
        "keep_comments": True,
    }

(This example uses Python 3.9’s dictionary merge operator.)

The middleware applies to all non-streaming, non-encoded HTML responses. You can skip it on individual views with the @no_html_minification decorator, documented below.

To restrict it more broadly, you can use a subclass with an overridden should_minify() method. This method accepts the request and response, and returns a bool. For example, to avoid minification of URL’s with the URL prefix /admin/:

from django.http import HttpRequest, HttpResponse

from django_minify_html.middleware import MinifyHtmlMiddleware


class ProjectMinifyHtmlMiddleware(MinifyHtmlMiddleware):
    def should_minify(self, request: HttpRequest, response: HttpResponse) -> bool:
        return super().should_minify(request, response) and not request.path.startswith(
            "/admin/"
        )

Note that responses are minified even when DEBUG is True. This is recommended because HTML minification can reveal bugs in your templates, so it’s best to always work with your HTML as it will appear in production. Minified HTML is hard to read with “View Source” - it’s best to rely on the inspector in your browser’s developer tools.

django_minify_html.decorators.no_html_minification

Apply this decorator to views for which you want to skip HTML minification.

from django.shortcuts import render

from django_minify_html.decorators import no_html_minification


@no_html_minification
def example_view(request):
    return render(request, "problematic-template.html")

Motivation

HTML minification is an underappreciated technique for web optimization. It can yield significant savings, even on top of other tools like HTTP compression (try django-http-compression for that.)

There is an existing package for HTML minification in Django, django-htmlmin. But it is much slower, since it does the minification in Python. At time of writing, it is also unmaintained, with no release since March 2019.

There are other minifiers out there, but in benchmarks minify-html surpasses them all. It’s a really well optimized and tested Rust library, and seems to be the best available HTML minifier.

Historically, Cloudflare provided automatic minification (removed August 2024). This was convenient at the CDN layer, since it requires no application changes. But it adds some overhead: non-minified HTML has to first be transferred to the CDN, and the CDN has to parse the response, and recombine it. It also means that you don’t get to see the potential side effects of minification until your code is live. Overall it should be faster and more predictable to minify within Django, at the point of HTML generation.

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_minify_html-1.14.0.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

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

django_minify_html-1.14.0-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file django_minify_html-1.14.0.tar.gz.

File metadata

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

File hashes

Hashes for django_minify_html-1.14.0.tar.gz
Algorithm Hash digest
SHA256 43c1c31c353ed40acfed4ddc15663bc6892c7745b09172e767dc944577e6241a
MD5 5c696485773096f11458c318ec95048d
BLAKE2b-256 6faa28cc8441ebe49d96b4c6727eb834ec949ac23865f56297b9cef54032ba75

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_minify_html-1.14.0.tar.gz:

Publisher: main.yml on adamchainz/django-minify-html

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_minify_html-1.14.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_minify_html-1.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0b9d1151979c40b79b879fe86b5a843c156ad39a7c5be8ff10b0db4e76673eec
MD5 b62bba69df39550c7b4218b8e291bd6a
BLAKE2b-256 1bbb75ecbfe437ada94d2a60fccb85cf508b39468801cda5cc1cb9a777484f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_minify_html-1.14.0-py3-none-any.whl:

Publisher: main.yml on adamchainz/django-minify-html

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