Metadata-Version: 2.1
Name: keycdn
Version: 0.4.1
Summary: A Python REST Client for KeyCDN API
Home-page: https://github.com/keycdn/python-keycdn-api
Author: KeyCDN
Author-email: hello@keycdn.com
License: UNKNOWN
Download-URL: https://github.com/keycdn/python-keycdn-api/tarball/0.4.1
Keywords: cdn,content delivery network,keycdn
Platform: UNKNOWN
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


