Asset packager for Django.
Project description
DPack
DPack is a static asset packager, written primarily for Django applications.
Installation
pip install dpack
DPack has a number of optional processors for things like minification and compilation:
pip install dpack[cssmin]
pip install dpack[jsmin]
pip install dpack[sass]
Or get everything with pip install dpack[all]
.
Configuration
DPack can be configured either via a dpack.yaml
file, or via a DPACK
setting if using Django. The following options
are available:
assets
- a dictionary whose keys are paths of files to be created (relative tooutput
), and whose values are lists of files to process and concatenate into said file. Each input file in the list may be prefixed by one or more processors by specifying the processor name followed by a colon. For instance,cssmin:sass:somefile.scss
tells DPack to first compilesomefile.scss
(found by searching insearch
directories) using SASS, then minify it using thecssmin
processor.defaults
- a dictionary whose keys are file extensions (without the.
), and whose values are lists of processors to use by default for input files of that type.output
- the path to store packed assets under. If not specified, this will be a temporary directory created usingtempfile.mkdtemp(prefix="dpack-")
.prefix
- the URL prefix compiled assets will ultimately be served from, used when rewritingurl
and@import
declarations in CSS files via therewrite
processor. If usingDPackFinder
, this defaults toSTATIC_URL
.register
- a dictionary whose keys are processor names you wish to register (or override), and whose values are dotted-path strings that resolve to a callable. See processors below.search
- a list of directories to search for input files in. If usingDPackFinder
, input files will be searches by using anySTATICFILES_FINDERS
that are notDPackFinder
itself.
Example dpack.yaml
assets:
compiled/site.css:
- app1/first.css
- app2/second.css
- cssmin:sass:app3/third.scss
compiled/site.js:
- app1/first.js
- app2/second.js
defaults:
css:
- rewrite
- cssmin
js:
- jsmin
output: ./build
prefix: /static/
register:
custom: myapp.processors.custom
search:
- ./app1/static
- ./app2/static
Example DPACK
Setting
DPACK = {
"assets": {
"compiled/site.css": [
"app1/first.css",
"app2/second.css",
"cssmin:sass:app3/third.scss",
],
"compiled/site.js": [
"app1/first.js",
"app2/second.js",
],
},
"defaults": {
"css": ["rewrite", "cssmin"],
"js": ["jsmin"]
},
"output": "./build",
"register": {
"custom": "myapp.processors.custom"
},
}
Using DPackFinder With Django
Simply add dpack.finders.DPackFinder
to your STATICFILES_FINDERS
setting, and DPack will search for inputs using
Django's staticfiles
app, output compiled assets when collectstatic
is called, and generate assets on-the-fly when
serving with runserver
(DEBUG=True
) or via the django.contrib.staticfiles.views.serve
view.
STATICFILES_FINDERS = (
"django.contrib.staticfiles.finders.FileSystemFinder",
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
"dpack.finders.DPackFinder",
)
If you compile an asset to compiled/css/site.css
, you can reference it as you would any other static asset, with
{% static "compiled/css/site.css" %}
in your templates. These assets are also then post-processed by your
STATICFILES_STORAGE
, so you can use things like Whitenoise's CompressedManifestStaticFilesStorage
with no extra configuration.
Command Line Interface
DPack comes with a command-line utility, unsurprisingly named dpack
. Run by itself, it will look for a dpack.yaml
config file and pack any assets it finds according to the config. You can specify a config file (-c
) or Django
settings module (-s
), and dump out the loaded config using dpack -y
. Run dpack -h
for a full list of options.
Processors
Processors are simply Python callables that take three arguments: text
(the processed text so far), input
(the
dpack.base.Input
object containing things like relative name
and absolute path
), and packer
(an instance of
dpack.DPack
containing things like prefix
). For example, the cssmin
processor is implemented as:
def process(text, input, packer):
return rcssmin.cssmin(text)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file dpack-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: dpack-0.4.2-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8866702b0135b363e33d97b5d42857a29cbb0ec3315d2caf2541b60f2cb2c0cc |
|
MD5 | 5547a3092a27a9c5fb513ae13982f75b |
|
BLAKE2b-256 | f29a45d12e3115667f99c6480b56b1c6f6910994df28a85846c6691b30db9fc8 |