Skip to main content

Anzar is a lightweight authentication and authorization framework that runs as a separate microservice

Project description

Anzar SDK Documentation

Server

from mysdkk import require_auth, requires_role

@app.route("/me")
@require_auth(secret="my-secret")
def me():
    return jsonify(g.user)

@app.route("/admin")
@requires_role(secret="my-secret", role="admin")
def admin():
    return "admin panel"

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

try:
    data: AuthResponse = anzar.Auth.register({
      "username": "username",
      "email": "user@example.com",
      "password": "password"
    })
except ApiException as e:
    print(e.status, e.body)

📝 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

try:
    data: AuthResponse = anzar.Auth.login({
      "email": "user@example.com",
      "password": "password"
    })
except ApiException as e:
    print(e.status, e.body)

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

anzar-0.4.1.tar.gz (47.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

anzar-0.4.1-py3-none-any.whl (138.8 kB view details)

Uploaded Python 3

File details

Details for the file anzar-0.4.1.tar.gz.

File metadata

  • Download URL: anzar-0.4.1.tar.gz
  • Upload date:
  • Size: 47.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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

Hashes for anzar-0.4.1.tar.gz
Algorithm Hash digest
SHA256 9db69a7ec38331fdd75ad4235f02ec62e411bda4ee5d02d9ed1ad872829b2ea5
MD5 cf5a5136bbe674729d0ebf993ec66bba
BLAKE2b-256 27a514265de7202e63b667565cf6a6e7d1f62fdabc3955f91786f498360e0c47

See more details on using hashes here.

File details

Details for the file anzar-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: anzar-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 138.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","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

Hashes for anzar-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0d51eed8571f6fa3356080b0460d4f6ad8cac4ad5d482c9f845dcc0ad0a06af2
MD5 d82fd69f2f67d09c015ef0229dc6a005
BLAKE2b-256 7446b60dc265271d0ef4f59c2ee7539cf1013a0deaf0472211a379a2d4b07577

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page