Metadata-Version: 2.1
Name: keycdn
Version: 0.4.2
Summary: A Python REST Client for KeyCDN API
Home-page: https://github.com/keycdn/python-keycdn-api
Author: KeyCDN
License: UNKNOWN
Keywords: cdn,content delivery network,keycdn
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Python Library for the KeyCDN API

## Installation

```bash
pip install keycdn
```

## Usage

### Initial

```python
import keycdn

...
api = keycdn.Api('<your_api_key>')

```

### Get all zones

```python
api.get('zones.json')
```

### Get a specific zone

```python
api.post('zones/<zoneId>.json')
```

### Purge zone cache

```python
api.get('zones/purge/<zoneId>.json')
```

For more details visit https://www.keycdn.com


