Metadata-Version: 1.0
Name: dop
Version: 0.1.3
Summary: A Python client for the Digital Ocean API
Home-page: http://github.com/ahmontero/dop
Author: Antonio Hinojo
Author-email: hello@ahmontero.com
License: Copyright (c) 2013 Antonio Hinojo.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Description: DOP: Digital Ocean API Python Wrapper
        =====================================
        
        DOP is a MIT licensed Python wrapper for Digital Ocean's API.
        
        
        Features
        --------
        
        Full support for all methods listed `here`_ except (they have weird behaviour):
            - reset_root_password
            - restore_droplet
            - destroy_image
        
        Installation
        ------------
        
        To install dop, simply: ::
        
            $ pip install dop
        
        
        Example
        -------
        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
        
        
        
        Contribute
        ----------
        Pull requests and improvements are welcome.
        
        .. _`here`: https://www.digitalocean.com/api
        
        
        Version 0.1.3
            + Added ssh_keys support to Droplet object (thanks to Derek: http://github.com/covertgeek)
        
        Version 0.1.2
            + Added ip_address to Droplet object (thanks to Derek: http://github.com/covertgeek)
        
        Version 0.1.1
            + Added support for requests 1.x (thanks to Luke: http://github.com/clone1018)
        
        Version 0.1.0
            + Initial release
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
