Inspired by ahmontero/dop.
pip install dopy
To interact with Digital Ocean, you first need .. a digital ocean account with valid API keys.
Keys can be set either as env variables or within the code.
$ export DO_API_TOKEN='api_token'
>>> from dopy.manager import DoManager
>>> do = DoManager('api_token')
The methods of the DoManager are self explanatory, for example:
>>> do.all_active_droplets()
>>> do.show_droplet('12345')
>>> do.destroy_droplet('12345')
>>> do.all_regions()
>>> do.all_images()
>>> do.all_ssh_keys()
>>> do.sizes()
>>> do.all_domains()
>>> do.show_domain('exapmle.com')
>>> do.new_droplet('new_droplet', '512mb', 'lamp', 'ams2')
Methods for Floating IPs are:
>>> do.all_floating_ips()
>>> do.new_floating_ip(droplet_id, region)
>>> do.destroy_floating_ip(ip_addr)
>>> do.assign_floating_ip(ip_addr)
>>> do.unassign_floating_ip(ip_addr)
>>> do.list_floating_ip_actions(ip_addr)
>>> do.get_floating_ip_action(ip_addr, action_id)
See github issue list - post if any needed