Metadata-Version: 1.1
Name: deltacloud
Version: 0.9.0
Summary: Python client library for Deltacloud API
Home-page: http://deltacloud.apache.org/
Author: Tomas Sedovic
Author-email: tomas@sedovic.cz
License: UNKNOWN
Description: Deltacloud Python client
        ========================
        
        A Python client for `Deltacloud API <http://deltacloud.apache.org/>`_ REST interface.
        
        
        Features
        --------
        
        - Basic operations with images, instances, hardware-profiles and realms
        - Manage instances using start, stop, destroy and reboot operations
        - Create new instance from image
        
        
        Examples
        --------
        
        Launching an instance
        ^^^^^^^^^^^^^^^^^^^^^
        
        ::
        
            from deltacloud import Deltacloud
            client = Deltacloud('http://localhost:3001/api', 'mockuser', 'mockpassword')
            instance = client.create_instance('img1', {'hwp_id': 'm1-small'})
        
        Listing images/hardware profiles/realms/instances
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        ::
        
            print(client.images())
            print(client.hardware_profiles())
            print(client.realms())
            print(client.instances())
        
        Stopping an instance
        ^^^^^^^^^^^^^^^^^^^^
        
        ::
        
            instance = client.instances()[0]
            instance.stop()
        
        
        Contributions
        -------------
        
        * Michal Fojtik
        * Tomas Sedovic
        * Martin Packman
        
        
        License
        -------
        
        Licensed under Apache License, Version 2.0 Copyright (C) 2009  Red Hat, Inc.
        
        See http://www.apache.org/licenses/LICENSE-2.0
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: requests (>=1.0)
