Anzar is a lightweight authentication and authorization framework that runs as a separate microservice
Project description
Anzar SDK Documentation
Server
from anzar_openapi import Role
from flask import g
from flask import Flask, jsonify
from anzar.server.flask import require_auth, requires_role
app = Flask(__name__)
CORS(app, origins=["http://localhost:5173"])
@app.route("/protected")
@require_auth(secret, audience="web-app")
def me():
return jsonify(g.user_id)
@app.route("/admin")
@requires_role(secret, role=Role.USER, audience="web-app")
def admin():
return jsonify(f"admin panel, {g.user_id}")
if __name__ == "__main__":
app.run(debug=True)
Client
Install The Python SDK
In a python project run the following command to install the anzar package.
uv
$ uv add anzar
pip
# in a virtual env run
$ pip install anzar
Create Anzar Auth Instance
in your main entry file (main.py for example),
import anzar.yml and parse it as a YAML file
def load_config(path: str) -> AnzarConfig:
import yaml
try:
with open(path, "r") as f:
data = yaml.safe_load(f)
return AnzarConfig(**data)
except Exception as e:
import sys
sys.exit("check your configuration file: anzar.yml")
import Anzar Auth and create your auth instance
# Initialize once at application startup
# The SDK will communicate with your Anzar container at the configured api_url
from anzar import Anzar
config = load_config("anzar.yml")
anzar = Anzar(config, options=None)
Note "Configuring Token Persistence" To keep users logged in across restarts, choose a token storage adapter.
```python
from anzar.adapters import RedisStorage
from anzar.types import SdkOptions
anzar = Anzar(config, SdkOptions(storage=RedisStorage()))
```
Basic Usage
Anzar provides authentication support for email and password.
📝 Note: Other methods of authentication will be implemented later
Sign Up
To sign up a user you need to call the method register with the user's information.
from anzar.types import ApiException, AuthResponse, ErrorCode
try:
data: AuthResponse = anzar.Auth.register({
"username": "username",
"email": "user@example.com",
"password": "password"
})
except ApiException as e:
if e.data is None:
return
if e.data.code == ErrorCode.InvalidCredentials:
show_error("Invalid email or password.")
elif e.data.code == ErrorCode.AccountNotVerified:
show_error("Please verify your email before logging in.")
📝 Note: By default, the users are automatically signed in after they successfully sign up. Disabling this behavior will be implemented later
Sign In
To sign in a user you need to call the method login.
from anzar.types import ApiException, AuthResponse, ErrorCode
try:
data: AuthResponse = anzar.Auth.login({
"email": "user@example.com",
"password": "password"
})
except ApiException as e:
if e.data is None:
return
if e.data.code == ErrorCode.InvalidCredentials:
show_error("Invalid email or password.")
elif e.data.code == ErrorCode.AccountNotVerified:
show_error("Please verify your email before logging in.")
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 anzar-0.4.2.tar.gz.
File metadata
- Download URL: anzar-0.4.2.tar.gz
- Upload date:
- Size: 48.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0adf86deb0a8d8e818f457a7742e541a7d687519de4b106a03f6b09ce8d57692
|
|
| MD5 |
22df6308e77978a5cc25f1e5f44733ac
|
|
| BLAKE2b-256 |
eb358c49886cf1d8d769ad6ebc29bdef76a66b690536eb9aeffdd23e8b136ba4
|
File details
Details for the file anzar-0.4.2-py3-none-any.whl.
File metadata
- Download URL: anzar-0.4.2-py3-none-any.whl
- Upload date:
- Size: 141.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef5d3a4649b607efb970ce7b22ababf9a862e2d11a39e2348233e783b5ec614e
|
|
| MD5 |
6e2f49e03f846e52c5ff81b581043a92
|
|
| BLAKE2b-256 |
c37e829e71f9a5e55ed58a54b65cc13438b95f61faa094285d4c3faf2c40e0d7
|