Cloudflare Images integration for Django
Project description
django-cloudflare-images
This is a Django library to add support to Cloudflare Images to the ImageField.
Installation
pip install django-cloudflare-images
Setup
You need to add the following your settings.py:
DEFAULT_FILE_STORAGE = "cloudflare_images.storage.CloudflareImagesStorage"
CLOUDFLARE_IMAGES_ACCOUNT_ID = "XXX"
CLOUDFLARE_IMAGES_API_TOKEN = "YYY"
CLOUDFLARE_IMAGES_ACCOUNT_HASH = "ZZZ"
If you wish to use a default variant for a specific field you need to change your ImageField
to a CloudflareImagesField
see example below:
from cloudflare_images.field import CloudflareImagesField
from django.db import models
class MyModel(models.Model):
image = CloudflareImagesField(variant="custom")
Please note that you will need to migrate your model(s) once you swapped the field(s). No SQL will actually be applied (you can check by running sqlmigrate <module> <number>
).
If you wish to use a custom domain to serve your images you need to add the following to your settings.py:
CLOUDFLARE_IMAGES_DOMAIN = "example.com"
If you wish to use a default variant other than "public" to serve your images you need to add the following to your settings.py:
CLOUDFLARE_IMAGES_VARIANT = "custom"
Development
Installing for development:
make install
Cleaning the installation:
make clean
Format the code:
make format
Running all tests:
make test
Create a sdist+bdist package in dist/:
make package
Project details
Release history Release notifications | RSS feed
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 django-cloudflare-images-0.5.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46dbe71f31aa833a9eafd5453be9a94a25f4a0c16c0c63859b0d0501be308138 |
|
MD5 | c98653baff97f2b6737b1867634b9489 |
|
BLAKE2b-256 | 177bb969ee50f19251412ab980008da5a90294aa0b63d414154bc4069f864a18 |
Hashes for django_cloudflare_images-0.5.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d9cfe7feecbf78b1d636c219e414887fde610b6e31905179567b6663454dfb0 |
|
MD5 | 7376b8aae11ef5b7526623449260cf3b |
|
BLAKE2b-256 | ddb88e14b1f5f0ecddc2c11cdae93b13845e7afbea7f0a7fbabf605cb0ecca91 |