Pre-compress your Pelican site using gzip, zopfli, and brotli!
Project description
Pre-compress your Pelican site using gzip, zopfli, and brotli!
Are you using Pelican, the static site generator? If so, great! Are you pre-compressing your static files to have the fastest site possible? If not, install pelican_precompress today! It’s the plugin that makes your visitors happy and saves you money!
Installation
There are three steps required to start using static compression:
Install the plugin and any supporting Python packages you want.
Configure Pelican to use the pelican_precompress plugin.
Configure your web server to use static, pre-compressed files.
1. Install the Python modules
At minimum, you’ll need to install the pelican_precompress plugin. It will automatically generate gzip files because gzip is built into the Python standard library.
However, if you want highly-optimized gzip files you’ll need the zopfli module. And if you want to have the very best compression currently available, you’ll need to install the brotli module (which will require extra work in step 3).
$ pip install pelican_precompress
$ pip install zopfli # This produces smaller gzip'd files. Use it!
$ pip install brotli # This requires extra work in step 3.
2. Configure Pelican
You’ll need to import the plugin and add it to the list of active plugins. Feel free to copy and paste the code below into your Pelican configuration file. Just uncomment and edit the configuration lines to your liking…or leave them alone because the defaults are awesome!
import pelican_precompress
PLUGINS = [pelican_precompress]
# PRECOMPRESS_GZIP = True or False
# PRECOMPRESS_ZOPFLI = True or False
# PRECOMPRESS_BROTLI = True or False
# PRECOMPRESS_OVERWRITE = False
# PRECOMPRESS_TEXT_EXTENSIONS = {
# '.atom',
# '.css',
# '.html',
# '.but-the-default-extensions-are-pretty-comprehensive',
# }
Further reading: Pelican plugins
3. Configure nginx
nginx supports gzip compression right out of the box. To enable it, add something like this to your nginx configuration file:
http {
gzip_static on;
gzip_vary on;
}
At the time of writing, nginx doesn’t natively support brotli compression. To get it, you’ll need to compile the static brotli module as an nginx dynamic module, or recompile nginx from scratch. When it’s done you’ll add something like this to your nginx configuration file:
load_module /usr/lib/nginx/modules/ngx_http_brotli_static_module.so;
http {
brotli_static on;
}
Further reading: gzip_static, gzip_vary, nginx brotli module
Configuration
There are a small number of configuration options available. You set them in your Pelican configuration file.
PRECOMPRESS_GZIP (bool, default is True)
This is always True unless you set this to False. For example, you might turn this off during development.
PRECOMPRESS_ZOPFLI (bool, default is True if zopfli is installed)
If the zopfli module is installed this will default to True. You might set this to False during development. Note that if you try to enable zopfli compression but the module isn’t installed then nothing will happen.
PRECOMPRESS_BROTLI (bool, default is True if brotli is installed)
If the brotli module is installed this will default to True. You might set this to False during development. Like PRECOMPRESS_ZOPFLI, if you set this to True when the brotli module isn’t installed then nothing will happen.
PRECOMPRESS_OVERWRITE (bool, default is False)
When pelican_precompress encounters an existing compressed file it will refuse to overwrite it. If you want the plugin to overwrite files you can set this to True.
PRECOMPRESS_TEXT_EXTENSIONS (Set[str])
This setting controls which file extensions will be pre-compressed.
If you modify this setting in the Pelican configuration file it will completely replace the default extensions!
Testing
pelican_precompress has 100% test coverage. If you’d like to test the code yourself, clone the git repository and run these commands:
$ python3 -m venv venv
$ source venv/bin/activate
(venv) $ python -m pip install tox
(venv) $ tox
The test suite uses tox to setup multiple environments with varying dependencies using multiple Python interpreters; pytest allows the test suite to have parametrized tests; pyfakefs creates a fake filesystem that the tests can run against; and coverage keeps track of which lines of code (and which branches) have been run.
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
Built Distribution
Hashes for pelican_precompress-1.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | df3dc4d9a4a3a78ee4c90f030438742354e750c5a5d98c88bcaecd0f28e798a1 |
|
MD5 | d8e4adcb7a5c94245c2f946b9bf9e7ad |
|
BLAKE2b-256 | 02a900622ed43c6cfeab4dc1d6ac725806a36769995fa6ce51e16c732ecfe088 |
Hashes for pelican_precompress-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90f7c2a75e09e5644d40821222bb86ea524059e454982030fcd95b1ad1a7bf6e |
|
MD5 | 56f5586fb05c3fde98201284b4afb839 |
|
BLAKE2b-256 | abb90449e2378fbc95cd491f7e6b10aebb23f2f93d04394005c10e6bd296e069 |