Metadata-Version: 1.1
Name: rackspacesdk
Version: 0.3.3
Summary: Rackspace plugin for the OpenStack SDK
Home-page: https://developer.rackspace.org/
Author: Rackspace
Author-email: sdk-support@rackspace.com
License: UNKNOWN
Description: Rackspace Plugin for the OpenStack SDK
        ======================================
        
        .. image:: https://travis-ci.org/rackerlabs/rackspace-sdk-plugin.svg?branch=master
            :target: https://travis-ci.org/rackerlabs/rackspace-sdk-plugin
        
        This plugin enables support for Rackspace authentication and services
        with the
        `OpenStack SDK <https://pypi.python.org/pypi/python-openstacksdk>`_.
        
        Usage
        -----
        
        The following example connects to the Rackspace Public Cloud and lists
        containers stored in Cloud Files within the IAD datacenter. ::
        
           from rackspace import connection
           conn = connection.Connection(username="my_user",
                                        api_key="123abc456def789ghi",
                                        region="IAD")
        
           for container in conn.object_store.containers():
               print(container.name)
        
        Documentation
        -------------
        
        Rackspace-specific documentation is not currently available.
        
        Documentation for the OpenStack SDK is available at
        http://python-openstacksdk.readthedocs.org/en/latest/
        
        Requirements
        ------------
        
        * Python 2.7+, Python 3.4+
        * python-openstacksdk>=0.6
        
        License
        -------
        
        Apache 2.0
        
        
Platform: UNKNOWN
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
