Skip to main content

Garpun Authentication Library

Project description

build pypi

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

Installing

You can install using pip:

$ pip install garpunauth

Supported Python Versions

Python >= 3.6

Using

# Use it for first auth with your scopes
from garpunauth.client import GarpunCredentials

credentials, project_id = GarpunCredentials.authenticate_user(['cloud-platform'])

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
GarpunCredentials.refresh_credentials(credentials)

print(u"credentials.access_token = %s" % str(credentials.access_token))

For contributors

  1. Use make black for blacken the code

  2. Use nox for run tests and other checks

  3. Set PyCharm default test runner to pytest

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.7.tar.gz (8.5 kB view hashes)

Uploaded Source

Built Distribution

garpunauth-0.0.7-py2.py3-none-any.whl (9.8 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