Convenient EdgeCast CDN management for Python
Project description
The EdgeCast CDN exposes a RESTful API for forcefully loading and purging content from your CDN hosts. The edgecast module provides a simple interface for performing those actions.
Furthermore, the django_edgecast module provides a convient way to configure and access an application wide API client entity through your Django settings.
Installation
To install edgecast and django_edgecast, do yourself a favor and don’t use anything other than pip:
$ pip install edgecast
Installation in Django
After the module has been installed, you need to add django_edgecast to your list of INSTALLED_APPS in your application configuration:
INSTALLED_APPS = (
...
'django_edgecast',
)
You also need to add your account number, which can be found in the upper right corner of your control panel, and your token, which can be found under your account settings, to your application configuration:
EDGECAST_ACCOUNT_NUMBER = '..'
EDGECAST_TOKEN = '..'
The Edgecast client can now be easily accessed from the entire application:
from django_edgecast 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:
- EDGECAST_CDN_DOMAIN
CDN domain to use for tests.
- EDGECAST_ACCOUNT_NUMBER
Account number (visible in the upper right corner of your control panel.)
- EDGECAST_TOKEN
Token (available under your account settings in your control panel.)
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 edgecast-1.0.2.tar.gz
.
File metadata
- Download URL: edgecast-1.0.2.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c863b689340760eae2ef52c5b7706b4f02dd85dd28b7eb58e5d7cc34a01b6be |
|
MD5 | c6b26fe5a385d92e9c29e7b8fc2e0333 |
|
BLAKE2b-256 | 7ecb7bdd4c8b05b27d790cdd47946249358f526f787ce4021b040b82f375e83f |