Convenient CacheFly CDN management for Python
Project description
The CacheFly CDN exposes an HTTP based API for forcefully purging content from their reverse proxying CDN solution. The cachefly module provides a simple interface for performing those actions.
Furthermore, the django_cachefly module provides a convient way to configure and access an application wide API client instance through your Django settings.
Installation
To install cachefly and django_cachefly, do yourself a favor and don’t use anything other than pip:
$ pip install cachefly
Installation in Django
After the module has been installed, you need to add django_cachefly to your list of INSTALLED_APPS in your application configuration:
INSTALLED_APPS = (
...
'django_cachefly',
)
You also need to configure your CacheFly API key in your application’s settings file:
CACHEFLY_API_KEY = '..'
The CacheFly API client can now be easily accessed from the entire application:
from django_cachefly import client
...
Testing
Testing requires a set of valid credentials. All tests are performed against URLs in the /_testing path for the CDN node your select. Credentials are loaded from the environment during testing for security:
- CACHEFLY_API_KEY
API key to use for testing.
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
File details
Details for the file cachefly-1.0.0.tar.gz
.
File metadata
- Download URL: cachefly-1.0.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dc700bd0f344958dfbbfcffb2ca669e41a587d27ece7e3e82ee09edd6a2d11b |
|
MD5 | 1537ee5fdae738483223b097f7572d20 |
|
BLAKE2b-256 | cb1906da7e862a09195ea8b72a90bb8cad2d131e536512923a4494f6217e311e |