forked from skwashd/python-acquia-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
55 lines (37 loc) · 1.2 KB
/
README
File metadata and controls
55 lines (37 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Python Library for Acquia's Cloud API
This is a python client for using the [Acquia Cloud API](https://cloudapi.acquia.com/).
## Installation
### Installing With pip (recommended)
`pip install acapi`
## Manual Installation
```
$ git clone git@github.com:skwashd/python-acquia-cloud.git acapi
$ cd acapi
$ ./setup.py build && ./setup.py install
```
## Examples
```python
import acapi
from pprint import pprint
# Acquia subscription name.
subname = 'example'
# Website domain.
domain = 'example.com'
# Instantiate client using environment variables.
c = acapi.Client()
# Get the site object.
site = c.site(subname)
# Get the environments object.
envs = site.environments()
# Print all environments on a subscription.
pprint(envs)
# List the SSH host for each environment.
for env in envs:
print "Env: {env} SSH Host: {host}".format(env=env, host=envs[env]['ssh_host'])
# Move a domain from stage to production.
envs['prod'].domain(domain).move('test')
# Backup the development environment database and download the dump file.
site.environment('dev').db(subname).backups().create().download('/tmp/backup.sql.gz')
```
This library was created and maintained by [Dave Hall](http://davehall.com.au).
See LICENSE