Basic framework to handle authentication and authorization in any kind of Python application.
Project description
GuardPost
GuardPost provides a basic framework to handle authentication and authorization in any kind of Python application.
pip install guardpost
This library is freely inspired by authorization in ASP.NET Core; although its implementation is extremely different.
Notable differences are:
- GuardPost is abstracted from the code that executes it, so it's not bound to the context of a web framework.
- GuardPost implements both classes for use with synchronous code (not necessarily I/O bound), and classes using
async/await
syntax (optimized for authentication and authorization rules that involve I/O bound operations such as web requests and communications with databases). - GuardPost leverages Python function decorators for the authorization part, so any function can be wrapped to be executed after handling authorization.
- The code API is simpler.
More documentation and examples
For more documentation and examples, refer to the project Wiki.
Both for async/await and synchronous code
GuardPost can be used both with async/await code and with synchronous code, according to use cases and users' preference.
If you have doubts about authentication vs authorization...
Authentication
answers the question: Who is the user who is executing the action?, or more in general: Who is the user, or what is the service, that is executing the action?.
Authorization
answers the question: Is the user, or service, authorized to do something?.
Usually, to implement authorization, is necessary to have the context of the entity that is executing the action. Anyway, the two things are logically separated and GuardPost is designed to keep them separate.
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
File details
Details for the file guardpost-0.0.3.tar.gz
.
File metadata
- Download URL: guardpost-0.0.3.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfebd503b0e905fedc072088ac4a13eaee6d29b391a827365d12a284a3caea42 |
|
MD5 | 0d5717cb2e2d16f93b795ed4b31941dc |
|
BLAKE2b-256 | 123fcb8ea9a7fef0bde9ae9034a003fec64de9b56d86f9b0ffb6250aec67bb8e |
File details
Details for the file guardpost-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: guardpost-0.0.3-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a46a130f29cf3a5dfc6796fc6c75e8ef921cafe80ef5143ca16e12b50c02850e |
|
MD5 | ffb76322d43daff3203445911e1554a3 |
|
BLAKE2b-256 | 3be7ecc4c94529a97c7c13a45164cfcfd53d7062e4c0a8a194c4d83440a50516 |