Metadata-Version: 2.1
Name: dolib
Version: 0.1.3
Summary: Digital Ocean API client library
Home-page: https://github.com/geraxe/dolib
Author: Yury Balandin
Author-email: yuri@balandin.ru
License: UNKNOWN
Description: # Python Digital Ocean Library
        
        
        ## Description
        
        
        ## Documentation
        
        
        ## Requirements
        
        Python 3.6+
        
        DOLib use this awesome libraries:
        
        * <a href="https://requests.readthedocs.io/" class="external-link" target="_blank">Requests</a> for network.
        * <a href="https://pydantic-docs.helpmanual.io/" class="external-link" target="_blank">Pydantic</a> for the data parts.
        
        ## Installation
        
        ```shell
        $ pip install dolib
        ```
        
        ## Example
        
        ```Python
        from dolib import Client
        
        client = Client(token="60c13d47f17dbed9f7293cf8c82d18fece3439a54f88e6c52c2df07f87bd8dd9")
        
        droplets = client.droplets.all()
        volume = client.volumes.get("53cf7120-9d5b-11ea-aed1-0a58ac14d008")
        
        client.volumes.attach(volume, droplet_id=droplets[0].id)
        ```
        
        
        ## Contributing
        
        See the [CONTRIBUTING.md](CONTRIBUTING.md) document for details.
        
        ## Versioning
        
        This project follows [Semantic Versioning 2.0.0](http://semver.org/spec/v2.0.0.html).
        
        ## License
        
        This project is licensed under the terms of the MIT license.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
Requires-Python: >=3.6
Description-Content-Type: text/markdown
