Qotto/QottoAuthClient
Project description
Qotto Auth Client
The python package qotto-auth-client is a client for the API qotto-auth which will soon be open sourced.
It allows to manage a scoped permission and authentication system.
More information coming soon...
Quickstart
The QottoAuthService class allows to interact with a qotto-auth GraphQL server.
from qottoauth import *
# Initialize the service
qotto_auth_service = QottoAuthService(QottoAuthGqlApi(QOTTO_AUTH_URL))
# Register this application
application = qotto_auth_service.register_application(
name=APPLICATION_NAME,
description=APPLICATION_DESCRIPTION,
)
# Register permission
permission_1 = qotto_auth_service.register_permission(
name=PERMISSION_1_NAME,
description=PERMISSION_1_DESCRIPTION,
application=application,
)
# Fetch current user or member
def handle(request)
actor = qotto_auth_service.actor(
token=request.COOKIES.get(TOKEN_COOKIE_NAME),
secret=request.COOKIES.get(SECRET_COOKIE_NAME),
)
if qotto_auth_service.is_authorized(
actor=actor,
permission=permission_1,
):
# Do something
else:
# Do something else
You can instantiate a QottoAuthService with a QottoAuthTestApi for testing purposes. In that case you might want to
extend the test api class if you extended service using direct api calls.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qotto_auth_client-2.2.4.tar.gz.
File metadata
- Download URL: qotto_auth_client-2.2.4.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.4 Linux/5.14.0-1050-oem
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
591e9c40c309906e571a6f471a71045870bdaf50fb0437e2540c94c227b063c6
|
|
| MD5 |
1515cd9439811e53f398bb03d43abd5e
|
|
| BLAKE2b-256 |
f53b623be8666343343f2f4298c68548571c2e1ca87ade884e958f6c12918c61
|
File details
Details for the file qotto_auth_client-2.2.4-py3-none-any.whl.
File metadata
- Download URL: qotto_auth_client-2.2.4-py3-none-any.whl
- Upload date:
- Size: 21.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.4 Linux/5.14.0-1050-oem
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd42699f07bc88a046c979709a45bd3e3a74d789cf1f768e9abf4fa34f3edfa6
|
|
| MD5 |
33d934ff137a58e7c760ab8f0067409a
|
|
| BLAKE2b-256 |
4850808a30c0a177f6c258046e5fe62d8df73f889f3502efe224101b6f278dbd
|