Skip to content

Commit

Permalink
'install pip' in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali Anwar committed Oct 14, 2014
1 parent 8d677c1 commit 684eeac
Showing 1 changed file with 6 additions and 17 deletions.
23 changes: 6 additions & 17 deletions cdap-authentication-clients/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,9 @@ authentication clients, and can be extended by the custom authentication client.

## Installation

To install CDAP Authentication Client, either
[download a zip file:](http://repository.cask.co/downloads/co/cask/cdap/cdap-python-authentication-client/1.0.1/cdap-python-authentication-client-1.0.1.zip)
To install the CDAP Authentication Client, run

$ unzip cdap-python-authentication-client-1.0.1.zip
$ cd cdap-python-authentication-client-1.0.1
$ python setup.py install

or [clone the repository:](https://github.com/caskdata/cdap-clients)

$ git clone https://github.com/caskdata/cdap-clients.git
$ cd cdap-clients/cdap-authentication-clients/python/
$ python setup.py install
$ pip install cdap-auth-client

## Usage

Expand Down Expand Up @@ -97,13 +88,11 @@ method should be called only once for every ```AuthenticationClient``` object).
### Retrieve and use the access token for the user from the authentication server

token = authentication_client.get_access_token()

headers = { 'Authorization': authentication_client.get_access_token().token_type + " " + \
authentication_client.get_access_token().value }

headers = { 'Authorization': token.token_type + ' ' + token.value }
requests.request(method, url, headers=headers)

If there is an error while fetching the access token, an ```IOError``` will be raised. The Authentication Client
caches the access token until the token expires. It automatically re-fetches a new token upon expiry.
If there is an error while fetching the access token, an ```IOError``` will be raised.


## Interactive Applications
Expand All @@ -116,7 +105,7 @@ Authentication Client with the retrieved credentials.

if authentication_client.is_auth_enabled():
for credential in authentication_client.get_required_credentials():
print("Please, specify " + credential.get_description() + "> ")
print('Please specify %s > ' % credential.get_description())
if credential.is_secret():
credential_value = getpass.getpass()
else:
Expand Down

0 comments on commit 684eeac

Please sign in to comment.