Skip to main content

Official Python SDK for Forte Platforms

Project description

Forte Platforms Python SDK

Official Python SDK for interacting with the Forte Platforms API.

Installation

pip install forte-sdk

Authentication

Set your API token as an environment variable:

export FORTE_API_TOKEN=your_api_token_here

Or pass it directly when creating the client:

client = ForteClient(api_token="your_api_token_here")

You can generate an API token from the Forte Platforms dashboard.

Quick Start

from forte_sdk import ForteClient

client = ForteClient()

# List your projects
projects = client.projects.list_projects()

# Get a specific project
project = client.projects.get_project(project_id="your-project-id")

Custom Base URL

client = ForteClient(base_url="https://custom-endpoint.example.com")

Error Handling

API errors are raised as exceptions:

from forte_sdk.generated.exceptions import ApiException

try:
    project = client.projects.get_project(project_id="invalid-id")
except ApiException as e:
    print(f"API error {e.status}: {e.reason}")

User Custom Attributes

Store arbitrary key-value metadata on your users. Useful for tracking subscription tiers, feature flags, preferences, or any application-specific data.

# Set custom attributes on a user
user = client.projects.put_user_custom_attributes(
    project_id="your-project-id",
    user_id="user-id",
    request_body={
        "plan": "pro",
        "referral_source": "google",
        "onboarding_completed": "true",
    },
)

print(user.custom_metadata_attributes)
# {'plan': 'pro', 'referral_source': 'google', 'onboarding_completed': 'true'}

Key constraints:

  • Keys must be 1-64 characters: letters, numbers, underscores, and hyphens only
  • Values are strings
  • Each call replaces all existing attributes — include any you want to keep

Merge with existing attributes

# Read current attributes, then merge
user = client.projects.get_project_user(
    project_id="your-project-id",
    user_id="user-id",
)

client.projects.put_user_custom_attributes(
    project_id="your-project-id",
    user_id="user-id",
    request_body={
        **user.custom_metadata_attributes,
        "plan": "enterprise",  # update one field
    },
)

API Reference

client.projects

Manage projects and services on Forte Platforms.

client.users

Manage end-users within your projects.

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

forte_sdk-1.0.9.tar.gz (43.7 kB view details)

Uploaded Source

Built Distribution

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

forte_sdk-1.0.9-py3-none-any.whl (94.5 kB view details)

Uploaded Python 3

File details

Details for the file forte_sdk-1.0.9.tar.gz.

File metadata

  • Download URL: forte_sdk-1.0.9.tar.gz
  • Upload date:
  • Size: 43.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for forte_sdk-1.0.9.tar.gz
Algorithm Hash digest
SHA256 1c03aa37feb51d66b8e709f590b76327123e71637221cff5f27ee8d511d09247
MD5 3f9d07a1fab0201c418f9cb5d5f6651e
BLAKE2b-256 b4f912a9bd04a34f4ccf93051942bf26f47989ec3f1d7c29bd68b8ca102e0c07

See more details on using hashes here.

File details

Details for the file forte_sdk-1.0.9-py3-none-any.whl.

File metadata

  • Download URL: forte_sdk-1.0.9-py3-none-any.whl
  • Upload date:
  • Size: 94.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for forte_sdk-1.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 0c374689055d7f4ef80033cb4f11ebd5d86cc3364d331167f8785c362ee26fe1
MD5 1994f51754207b003594bfb2c9915bf5
BLAKE2b-256 ebc68e750f445b264788752e16f7a1b7e81fe62407587a595954df3da13c6d69

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