Metadata-Version: 2.0
Name: rackspacesdk
Version: 0.7.5
Summary: Rackspace plugin for the OpenStack SDK
Home-page: https://developer.rackspace.com
Author: Rackspace
Author-email: UNKNOWN
License: UNKNOWN
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
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: six
Requires-Dist: rackspaceauth (==0.2.0)
Requires-Dist: openstacksdk (<=1.0,>=0.9.9)

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/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://developer.openstack.org/sdks/python/openstacksdk/

Requirements
------------

* Python 2.7+, Python 3.4+
* openstacksdk>=0.6

License
-------

Apache 2.0



