A Python client libary for the Fastly API.
Project description
A Python client library for Fastly (http://www.fastly.com).
Example:
import fastly
# Connects to Fastly using API key.
client = fastly.connect("your-api-key")
# Need to fully authenticate to access all features.
client.login("email@domain.com", "h4x0rp4ssw0rd")
# Get your account details.
current_customer = client.get_current_customer()
# Get your user details.
current_user = client.get_current_user()
# List all services.
all_services = client.list_services()
# Create a service.
service = client.create_service(current_customer.id,
"test-service",
comment="A service for testing out the client.")
# Create a new version of the service.
service_version = client.create_service_version(service.id,
comment="A new version of this service.")
# Create a domain.
domain = client.create_domain(service.id,
service_version.number,
"www.test.com",
comment="A new domain.")
# List domains associated with this version.
print client.list_domains(service.id, service_version.number)
# Delete the domain we just created.
client.delete_domain(service.id, service_version.number, domain.name)
Example:
import fastly
# Connects to Fastly using API key.
client = fastly.connect("your-api-key")
# Need to fully authenticate to access all features.
client.login("email@domain.com", "h4x0rp4ssw0rd")
# Get your account details.
current_customer = client.get_current_customer()
# Get your user details.
current_user = client.get_current_user()
# List all services.
all_services = client.list_services()
# Create a service.
service = client.create_service(current_customer.id,
"test-service",
comment="A service for testing out the client.")
# Create a new version of the service.
service_version = client.create_service_version(service.id,
comment="A new version of this service.")
# Create a domain.
domain = client.create_domain(service.id,
service_version.number,
"www.test.com",
comment="A new domain.")
# List domains associated with this version.
print client.list_domains(service.id, service_version.number)
# Delete the domain we just created.
client.delete_domain(service.id, service_version.number, domain.name)
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
cdn-fastly-1.0.4.tar.gz
(13.7 kB
view details)
File details
Details for the file cdn-fastly-1.0.4.tar.gz
.
File metadata
- Download URL: cdn-fastly-1.0.4.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 441085bad88c80f0969282b74bc80bcabdd4f5c0f337495d40a0926f98a71740 |
|
MD5 | 30dc06540e35e016076288f0e38bfd8a |
|
BLAKE2b-256 | 6029a6340f7078d7e349d434a0374475071d8f57aeb716c9863ea5501b004537 |