django-compressor: Optimize Django Assets with Compression and Minification
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
django-compressor is a powerful Django application that processes, combines, and minifies linked and inline JavaScript or CSS into cacheable static files. It significantly enhances web application performance by reducing file sizes and optimizing asset delivery. The tool supports various compilers like LESS and SASS, offering extensive configurability for efficient asset management.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
django-compressor is an essential Django application for optimizing web assets. It takes your linked and inline JavaScript and CSS, processes them through various filters and compilers, and then combines and minifies them into single, cacheable static files. This process dramatically improves page load times and overall website performance by reducing the number of HTTP requests and the size of transmitted data.
Installation
Getting started with django-compressor is straightforward. You can install it using pip:
pip install django-compressor
After installation, add 'compressor' to your INSTALLED_APPS in your Django settings file.
Examples
Using django-compressor in your Django templates is intuitive. You wrap your CSS or JavaScript assets within {% compress %} and {% endcompress %} tags. For example, to compress CSS:
{% load compress %}
{% compress css %}
<link rel="stylesheet" href="/static/css/base.css" type="text/css" charset="utf-8">
<style type="text/css">p { border: 1px solid #ccc; }</style>
{% endcompress %}
And for JavaScript:
{% load compress %}
{% compress js %}
<script src="/static/js/jquery.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(function () {
console.log('Hello from inline JS!');
});
</script>
{% endcompress %}
The compressor will then output a single <link> or <script> tag pointing to the optimized, cached file.
Why Use It
django-compressor offers several compelling reasons for its adoption in Django projects:
- Performance Boost: By combining and minifying assets, it reduces HTTP requests and file sizes, leading to faster page loads.
- Caching Efficiency: Optimized files are named based on their content, allowing for far-future expiration dates and efficient browser caching.
- Compiler Support: It supports popular pre-processors like LESS, SASS, and CoffeeScript, integrating them seamlessly into your workflow.
- Extensibility: The system is highly configurable, allowing you to implement custom filters, parsers, and compressors to fit specific project needs.
- Offline Compression: You can run the compression process manually using
manage.py compress, pre-generating static files outside the request/response cycle for even better performance.
Links
For more detailed information, usage guides, and advanced configurations, refer to the official resources:
Related repositories
Similar repositories that may be relevant next.
Django-Pipeline: Asset Packaging for Django Applications
July 26, 2026
Django-Pipeline is a robust asset packaging library designed for Django projects. It streamlines the process of concatenating and compressing CSS and JavaScript files, enhancing web application performance. This tool also offers built-in JavaScript template support and optional data-URI embedding for images and fonts.

Flask-Assets: Seamless Asset Management for Flask Applications
July 26, 2026
Flask-Assets provides robust integration of the `webassets` library with Flask. It simplifies the process of merging, minifying, and compiling CSS and JavaScript files, significantly enhancing web application performance and streamlining development workflows.

webassets: Asset Management for Python Web Development
July 26, 2026
webassets is a robust library designed for asset management in Python web development. It simplifies the process of merging and compressing JavaScript and CSS files, enhancing application performance. This tool is essential for developers looking to optimize their frontend assets efficiently.

requests-html: Pythonic HTML Parsing with JavaScript Support
July 25, 2026
requests-html is a Python library designed to simplify HTML parsing and web scraping. It extends the familiar Requests experience with powerful parsing capabilities, including full JavaScript support via Chromium, CSS selectors, and XPath. This makes it an ideal tool for developers needing to interact with dynamic web content.
Source repository
Open the original repository on GitHub.