summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2012-10-24 07:12:30 -0500
committerDolph Mathews <dolph.mathews@gmail.com>2012-10-24 07:21:47 -0500
commit5f38eb736c50f4feb245f88780167ff0b41263c4 (patch)
treecd6bc96807559b80e9c791054470e37b41d5cb72 /README.rst
parentc3b4f7fd0e4c010b05e91f952fb2345da6c6cba5 (diff)
downloadpython-keystoneclient-5f38eb736c50f4feb245f88780167ff0b41263c4.tar.gz
Replace refs to 'Keystone API' with 'Identity API'
Formally, OpenStack Keystone implements the OpenStack Identity API, and this is a client to the API, not to Keystone itself. Change-Id: If568866221a29ba041f0f2cd56dc81deeb9ebc00
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst15
1 files changed, 7 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index 4794fe3..6106b48 100644
--- a/README.rst
+++ b/README.rst
@@ -1,10 +1,9 @@
-Python bindings to the OpenStack Keystone API
-=============================================
+Python bindings to the OpenStack Identity API (Keystone)
+========================================================
-This is a client for the OpenStack Keystone API. There's a Python API (the
-``keystoneclient`` module), and a command-line script (``keystone``). The
-Keystone 2.0 API is still a moving target, so this module will remain in
-"Beta" status until the API is finalized and fully implemented.
+This is a client for the OpenStack Identity API, implemented by Keystone.
+There's a Python API (the ``keystoneclient`` module), and a command-line script
+(``keystone``).
Development takes place via the usual OpenStack processes as outlined in
the `OpenStack wiki`_. The master repository is on GitHub__.
@@ -27,7 +26,7 @@ Python API
By way of a quick-start::
- # use v2.0 auth with http://example.com:5000/v2.0")
+ # use v2.0 auth with http://example.com:5000/v2.0
>>> from keystoneclient.v2_0 import client
>>> keystone = client.Client(username=USERNAME, password=PASSWORD, tenant_name=TENANT, auth_url=AUTH_URL)
>>> keystone.tenants.list()
@@ -39,7 +38,7 @@ Command-line API
----------------
Installing this package gets you a shell command, ``keystone``, that you
-can use to interact with Keystone's Identity API.
+can use to interact with OpenStack's Identity API.
You'll need to provide your OpenStack tenant, username and password. You can
do this with the ``--os-tenant-name``, ``--os-username`` and ``--os-password``