DOP is a MIT licensed Python wrapper for Digital Ocean's API.
- Full support for all methods listed here except (they have weird behaviour):
- reset_root_password
- restore_droplet
- destroy_image
To install dop, simply:
$ pip install dop
It is pretty easy to use:
from dop.client import Client client = Client('client_id', 'api_key') regions = client.regions() for region in regions: print region.to_json()
Pull requests and improvements are welcome.