Digital Ocean API Wrapper
I found myself wanting to take snapshots of my digital ocean droplets. I wrote a quick python script that wraps the api and allows me to snapshot my droplet on a regular basis.
#! /usr/bin/env python
import requests
import time
API_KEY=''
CLI_ID=''
def fetch(path, opts={}):
opts['api_key'] = API_KEY …