Skip to main content

digitalocean.com API to manage Droplets and Images

Project description

This library provides easy access to Digital Ocean APIs to deploy droplets, images and more.

image0

image1
image2
image3

How to install

You can install python-digitalocean using pip

pip install -U python-digitalocean

or via sources:

python setup.py install

Features

python-digitalocean support all the features provided via digitalocean.com APIs, such as:

  • Get user’s Droplets

  • Get user’s Images (Snapshot and Backups)

  • Get public Images

  • Get Droplet’s event status

  • Create and Remove a Droplet

  • Resize a Droplet

  • Shutdown, restart and boot a Droplet

  • Power off, power on and “power cycle” a Droplet

  • Perform Snapshot

  • Enable/Disable automatic Backups

  • Restore root password of a Droplet

Examples

Listing the droplets

This example shows how to list all the active droplets:

import digitalocean
manager = digitalocean.Manager(token="secretspecialuniquesnowflake")
print(manager.get_all_droplets())

Shutdown all droplets

This example shows how to shutdown all the active droplets:

import digitalocean
manager = digitalocean.Manager(token="secretspecialuniquesnowflake")
my_droplets = manager.get_all_droplets()
for droplet in my_droplets:
    droplet.shutdown()

Creating a Droplet and checking its status

This example shows how to create a droplet and how to check its status

import digitalocean
droplet = digitalocean.Droplet(token="secretspecialuniquesnowflake",
                               name='Example',
                               region='nyc2', # New York 2
                               image='ubuntu-14-04-x64', # Ubuntu 14.04 x64
                               size_slug='512mb',  # 512MB
                               backups=True)
droplet.create()

Checking the status of the droplet

actions = droplet.get_actions()
for action in actions:
    action.load()
    # Once it shows complete, droplet is up and running
    print action.status

Add SSHKey into DigitalOcean Account

from digitalocean import SSHKey

user_ssh_key = open('/home/<$USER>/.ssh/id_rsa.pub').read()
key = SSHKey(token='secretspecialuniquesnowflake',
             name='uniquehostname',
             public_key=user_ssh_key)
key.create()

Creating a new droplet with all your SSH keys

manager = digitalocean.Manager(token="secretspecialuniquesnowflake")
keys = manager.get_all_sshkeys()

droplet = digitalocean.Droplet(token="secretspecialuniquesnowflake",
                               name='DropletWithSSHKeys',
                               region='ams3', # Amster
                               image='ubuntu-14-04-x64', # Ubuntu 14.04 x64
                               size_slug='512mb',  # 512MB
                               ssh_keys=keys, #Automatic conversion
                               backups=False)
droplet.create()

Testing

Test using Docker

To test this python-digitalocean you can use docker to have a clean environment automatically. First you have to build the container by running in your shell on the repository directory:

docker build -t "pdo-tests" .

Then you can run all the tests (for both python 2 and python 3)

docker run pdo-tests

Note: This will use Ubuntu 14.04 as base and use your repository to run tests. So every time you edit some files, please run these commands to perform tests on your changes.

Testing using pytest manually

Use pytest to perform testing. It is recommended to use a dedicated virtualenv to perform tests, using these commands:

$ virtualenv /tmp/digitalocean_env
$ source /tmp/digitalocean_env/bin/activate
$ pip install -r requirements.txt

To run all the tests manually use py.test command:

$ python -m pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-digitalocean-me-1.19.0.tar.gz (31.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_digitalocean_me-1.19.0-py3-none-any.whl (40.8 kB view details)

Uploaded Python 3

File details

Details for the file python-digitalocean-me-1.19.0.tar.gz.

File metadata

  • Download URL: python-digitalocean-me-1.19.0.tar.gz
  • Upload date:
  • Size: 31.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for python-digitalocean-me-1.19.0.tar.gz
Algorithm Hash digest
SHA256 1347ca59811f6b605c03b7208692eff91433b442cbda700b1f3afc209c0a69ed
MD5 1a28b22dc0c5f4b1becc48d644beaa08
BLAKE2b-256 dd5cf4f53a1465698dcd9641714b3db3ddfd334ed9705abe376aedf96cc92235

See more details on using hashes here.

File details

Details for the file python_digitalocean_me-1.19.0-py3-none-any.whl.

File metadata

File hashes

Hashes for python_digitalocean_me-1.19.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5772c69b03ba7c72d25faa2fbad7e77aa91858bae60d7fc56d5ee941bdd92372
MD5 d46ca23e62e432525e8a5d31c480e325
BLAKE2b-256 504f83bb3e939c677845e80887d4d2930a0905b8061c41e4963feed1a78c3477

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page