Skip to main content

SDK to consume Fauthy API from a FastAPI application.

Project description

Fauthy Python SDK

A Python SDK for interacting with the Fauthy API.

Installation

pip install fauthy-python-sdk

Usage

Basic Setup

from fauthy_sdk import FauthyClient

# Initialize the client
client = FauthyClient(
    client_id="your_client_id",
    client_secret="your_client_secret"
)

Management API

The SDK provides access to the Fauthy Management API v1 endpoints.

Get Management Info

response = client.get_management_info()
print(response.json())

List Users

# Basic listing
response = client.list_users()

# With pagination and search
response = client.list_users(
    page=1,
    query="john",
    per_page=20
)

# With custom claims filtering
custom_claims = {
    "company": "Test Corp",
    "department": "Engineering"
}
response = client.list_users(
    page=1,
    query="",
    per_page=10,
    custom_claims_filter=custom_claims
)

Create User

response = client.create_user(
    email="user@example.com",
    first_name="John",
    last_name="Doe",
    roles=["role_uuid_1", "role_uuid_2"],
    custom_claims={
        "company": "Test Corp",
        "department": "Engineering"
    },
    mark_as_verified=True
)

Get User

response = client.get_user("user_uuid")

Update User

response = client.update_user(
    user_id="user_uuid",
    first_name="Jane",
    last_name="Smith",
    email="jane@example.com"
)

Delete User

response = client.delete_user("user_uuid")

Set User Password

response = client.set_user_password(
    user_id="user_uuid",
    password="new_secure_password"
)

List Roles

# Basic listing
response = client.list_roles()

# With pagination
response = client.list_roles(
    page=1,
    n_per_page=50
)

Custom Claims Filtering

The SDK supports filtering users by custom claims using the custom_claims_filter parameter in the list_users method. This allows you to filter users based on their custom JWT claims.

Example

# Filter users by company and department
custom_claims = {
    "company": "Test Corp",
    "department": "Engineering"
}

response = client.list_users(
    page=1,
    per_page=20,
    custom_claims_filter=custom_claims
)

This will send a request with query parameters like:

  • claim_company=Test Corp
  • claim_department=Engineering

The API will return only users whose custom claims match these values.

Error Handling

The SDK raises requests.exceptions.RequestException for HTTP errors. You can handle these exceptions to manage API errors:

import requests

try:
    response = client.get_user("user_uuid")
    print(response.json())
except requests.exceptions.RequestException as e:
    print(f"API Error: {e}")

Response Format

All methods return a requests.Response object. You can access the JSON data using:

response = client.list_users()
data = response.json()
print(f"Total users: {data['total']}")
print(f"Users: {data['items']}")

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

fauthy_python_sdk-0.3.0.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

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

fauthy_python_sdk-0.3.0-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file fauthy_python_sdk-0.3.0.tar.gz.

File metadata

  • Download URL: fauthy_python_sdk-0.3.0.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fauthy_python_sdk-0.3.0.tar.gz
Algorithm Hash digest
SHA256 cbcfac2b85d41183e6e1010a789067a0ac3afd739368388e6a4c964c29b4d44c
MD5 0a8333457d6d8e7c8c43ddfc793336e0
BLAKE2b-256 c967aae88159936451bbbba5b28fae9aadd9cf46005c821e403ff361b1810cff

See more details on using hashes here.

Provenance

The following attestation bundles were made for fauthy_python_sdk-0.3.0.tar.gz:

Publisher: python-publish.yml on Studio-Piot/fauthy-python-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fauthy_python_sdk-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for fauthy_python_sdk-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e61f017697efc0d25f6fb54ea18cd27a5e8da6468a5a8276bda86022628396f5
MD5 f5034cc33a6a06c779c2872613e63f27
BLAKE2b-256 bbde1aacde7f391f5427adae694e8e153183f91c5fc5592ff8d5b51a4da965d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fauthy_python_sdk-0.3.0-py3-none-any.whl:

Publisher: python-publish.yml on Studio-Piot/fauthy-python-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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