Metadata-Version: 1.0
Name: python-digitalocean
Version: 0.2.4
Summary: digitalocean.com API to manage Droplets and Images
Home-page: https://github.com/koalalorenzo/python-digitalocean
Author: Lorenzo Setale ( http://who.is.koalalorenzo.com/? )
Author-email: koalalorenzo@gmail.com
License: UNKNOWN
Description: # python-digitalocean
        
        python-digitalocean is a python package that provide easy acces to digitalocean.com APIs to manage droplets, images and more.
        
        ## 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 pubblic Images
        * 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
        
        
        ## Example: Shutdown all droplets
        
        This example shows how to shutdown all the droplets active:
        
            import digitalocean
            manager = digitalocean.Manager(client_id="ABC", api_key="ABC")
            my_droplets = manager.get_all_droplets()
            for droplet in my_droplets:
                droplet.shutdown()
        
        
Platform: UNKNOWN
