Python wrapper for Digital Ocean API V2
Project description
Python wrapper for Digital Ocean API V2.
Installation
pip install dosa
Usage
import dosa
API_KEY = 'Your API Key'
dosa.set_debug() # enables debug logs
client = dosa.Client(api_key=API_KEY)
# Droplets
client.droplets.list()
status, result = client.droplets.create(name='terminator', region='nyc2',\
size='512mb', image='ubuntu-14-04-x32', ssh_keys=[12345])
new_droplet_id = result['id']
# Droplet
new_droplet = client.Droplet(new_droplet_id)
print(new_droplet.info())
## shortcuts
new_droplet.status()
new_droplet.ip_addresses()
client.droplets.delete(new_droplet_id)
# SSH Keys
pub_key = open('~/.ssh/id_rsa.pub').read()
client.keys.create(name='RSA key', public_key=pub_key)
client.keys.list()
# Images
client.images.list()
# Extras
client.sync_ssh_keys(keys_dir)
Credits
Created while working on Scroll.in’s project.
Dosa?
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
dosa-0.4.tar.gz
(3.6 kB
view details)
File details
Details for the file dosa-0.4.tar.gz
.
File metadata
- Download URL: dosa-0.4.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11151112e023563a1eab4ebb5adecace925e72d8fbc93bf4b99a65e657eafc40 |
|
MD5 | dab83e0427226e9121a85ad163f829c3 |
|
BLAKE2b-256 | be44f5df3869a251c07529d87b4653b69e1310e0a4093d9c65399feaa90e94ef |