Skip to main content

Garpun Authentication Library

Project description

Garpun Auth Python Library

This library simplifies using Garpun’s various server-to-server authentication mechanisms to access Garpun APIs.

Google oauth2client library is taken as a basis.

Supported Python Versions

Python >= 3.4

Installing

You can install using pip:

$ pip install garpunauth

Using

# Use it for first auth with your scopes
GarpunCredentials.authenticate_user(['cloud-platform'])

# Get default credentials
credentials = GarpunCredentials.get_application_default()
print(u"credentials.access_token = %s" % str(credentials.access_token))
print(u"credentials.access_token_expired = %s" % str(credentials.access_token_expired))
print(u"credentials.refresh_token = %s" % str(credentials.refresh_token))

# Refresh access_token if it expired
import httplib2
http = credentials.authorize(httplib2.Http())
credentials.refresh(http)
print(u"credentials.access_token = %s" % str(credentials.access_token))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

garpunauth-0.0.6.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

garpunauth-0.0.6-py2.py3-none-any.whl (9.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page