Skip to main content

Python library to manage OAuth access tokens

Project description

Build Status Code Coverage PyPI Downloads Latest PyPI version License

A Python library that keeps OAuth 2.0 service access tokens in memory for your usage.

Installation

$ sudo pip3 install --upgrade stups-tokens

Usage

import requests
import time
import tokens

# will use OAUTH2_ACCESS_TOKEN_URL environment variable by default
# will try to read application credentials from CREDENTIALS_DIR
tokens.configure(url='https://example.com/access_tokens')
tokens.manage('example', ['read', 'write'])
tokens.start()

tok = tokens.get('example')

requests.get('https://example.org/', headers={'Authorization': 'Bearer {}'.format(tok)})

time.sleep(3600) # make the token expire

tok = tokens.get('example') # will refresh the expired token
requests.get('https://example.org/', headers={'Authorization': 'Bearer {}'.format(tok)})

Local testing

The “tokens” library allows injecting fixed OAuth2 access tokens via the OAUTH2_ACCESS_TOKENS environment variable. This allows testing applications using the library locally with personal OAuth2 tokens (e.g. generated by “zign”):

$ MY_TOKEN=$(zign token -n mytok)
$ export OAUTH2_ACCESS_TOKENS=mytok=$MY_TOKEN
$ ./myapp.py # start my local Python app using the tokens library

Releasing

Uploading a new version to PyPI:

$ ./release.sh <NEW-VERSION>

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

stups-tokens-1.0.17.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

stups_tokens-1.0.17-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file stups-tokens-1.0.17.tar.gz.

File metadata

File hashes

Hashes for stups-tokens-1.0.17.tar.gz
Algorithm Hash digest
SHA256 8fb4298293b39847e7cacf6bf3cc37fff54a6fae5077e1693d424eb5497c3d68
MD5 96aa070b32452b3740f45b921c1b5952
BLAKE2b-256 ea1de79b37d6e35aa0c32e99afd4eb1594ef460fd1d0ff851136e5bd3bbf4049

See more details on using hashes here.

Provenance

File details

Details for the file stups_tokens-1.0.17-py3-none-any.whl.

File metadata

File hashes

Hashes for stups_tokens-1.0.17-py3-none-any.whl
Algorithm Hash digest
SHA256 cc7eddb59b2d50959586007d7b5758d3c0acd5099e8409fa772685a60407e4ff
MD5 da33eddc0bdaf63839d484f09438dc13
BLAKE2b-256 19eaf857cd5ff634d52a548b2faa4b5fe68c9ad9f4078b97f74f3b4f6b78a932

See more details on using hashes here.

Provenance

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