Metadata-Version: 1.1
Name: python-keystoneclient-rackspace
Version: 0.1.3
Summary: Rackspace Auth Plugin for OpenStack Clients.
Home-page: https://github.com/testeddoughnut/python-keystoneclient-rackspace
Author: M. David Bennett
Author-email: mdavidbennett@syntheticworks.com
License: Apache License, Version 2.0
Download-URL: https://github.com/testeddoughnut/python-keystoneclient-rackspace/tarball/v0.1.3
Description: # python-keystoneclient-rackspace
        Plugin for API key authentication in the Rackspace Cloud
        
        Example usage:
        
            from keystoneclient_rackspace.v2_0 import RackspaceAuth
            from keystoneclient.session import Session
            from novaclient.client import Client
        
            auth = RackspaceAuth(
                auth_url="https://identity.api.rackspacecloud.com/v2.0",
                username="demoauthor",
                api_key="aaaaa-bbbbb-ccccc-12345678",
                tenant_id=1100111)
            session = Session(auth=auth)
            client = Client(2, session=session, region_name="DFW")
            client.servers.list()
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Environment :: OpenStack
Classifier: Programming Language :: Python
