Python package to interact with multiple authentication services
Project description
py-multiauth
Installation
pip install py-multiauth
Supported methods
Name | Authenticate | Refresh | Extra |
---|---|---|---|
API_KEY |
✓ | ||
AWS |
✓ | ✓ | Signature |
BASIC |
✓ | ||
REST |
✓ | ✓ | |
DIGEST |
✓ | ||
GRAPHQL |
✓ | ||
HAWK |
✓ | ||
MANUAL |
✓ | ||
OAUTH |
✓ | ✓ |
Usage
Loading a configuration file
Currently, we support 4 way of loading a configuration file.
# Using constructor argument
MultiAuth(authrc_file='path.json')
# Using environment variable
os.environ['AUTHRC'] = 'path.json'
# Using autodection
os.paths.exists('.authrc')?
# Using autodection from user home directory
os.path.exists(os.path.expanduser('~/.multiauth/.authrc'))?
Managing authentication flow
MultiAuth supports context singleton. From that, you can instanciate MultiAuth and re-use the same class in another package as far it is sharing the same context.
auth = MultiAuth(auths=.., users=.., authrc=.., logger=..)
# Sending the requests to get the correct headers
auth.authenticate_users()
# Getting the header before sending a HTTP request
auth_headers = auth.reauthenticate(username=.., additional_headers=.., no_auth=..)
r = requests.get('https://example.com', headers=auth_headers[0])
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py_multiauth-1.11.0.tar.gz
(35.6 kB
view details)
Built Distribution
File details
Details for the file py_multiauth-1.11.0.tar.gz
.
File metadata
- Download URL: py_multiauth-1.11.0.tar.gz
- Upload date:
- Size: 35.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be7ad6ba37543d9e0b38b39489413034d8256429dca529c9523c127fb0d5fb5b |
|
MD5 | a306bc3dd7406b89b805178a6346a560 |
|
BLAKE2b-256 | 530d0dd6795f2de7a600d1990856f554513f1a3123c76049c0b026d9c59650e1 |
File details
Details for the file py_multiauth-1.11.0-py3-none-any.whl
.
File metadata
- Download URL: py_multiauth-1.11.0-py3-none-any.whl
- Upload date:
- Size: 47.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d823b64a647d338782d621772304c4e73263e7b4d53a22b38917484bd08d5da |
|
MD5 | d9d11b008ea6e44dd4cbab2df99c94ab |
|
BLAKE2b-256 | ed1e0092eb4232e07ef004fdbab9c2484d7848b4edd66273931cd5a1d7da3fe8 |