Metadata-Version: 2.0
Name: rackspace-token-generator
Version: 1.2
Summary: A script to generate Rackspace Cloud Identity tokens
Home-page: UNKNOWN
Author: Brian Curtin
Author-email: brian.curtin@rackspace.com
License: Apache Software License
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Dist: keystoneauth1 (>=3.3.0)
Requires-Dist: rackspaceauth (>=0.6.0)

rackspace-token-generator
=========================

A script to generate authentication tokens for use with Rackspace Cloud
Identity. This was specifically created for the Rackspace Private Cloud
Insights API, though it is generally applicable to anything that needs
to be given a token.

Install
*******

To install the `get_token.py` script::

    pip install rackspace-token-generator

Run
***

The `get_token.py` script has a complete help text by running
`get_token.py -h`. The following are the most common usages::

    $ get_token.py --username <your username> --password
    Enter password: <your password>
    Token:
      <token>

    $ get_token.py --username <your username> --api-key
    Enter API key: <your API key>
    Token:
      <token>


