Skip to main content

Stytch Management API Python client

Project description

Stytch Management Python Library

The Stytch Management Python library makes it easy to use Stytch's Programmatic Workspace Actions API in Python applications.

This library requires Python 3.8 or later.

Installation

pip install stytch-management

Pre-requisites

You need your Stytch Management API credentials from the workspace management section of your Stytch Dashboard.

Note: These credentials allow you to perform read and write actions on your workspace, potentially modifying or deleting important Stytch resources like projects, environments, or secrets.

Examples

Create a new API client:

from stytch_management import Client

# Set your Stytch Management API credentials
client = Client(
    workspace_key_id="workspace-test-...",
    workspace_key_secret="secret-test-..."
)

Create a new B2B project:

response = client.projects.create(
    name="My new project",
    vertical="B2B"
)

new_project = response.project
print(f"Created project: {new_project.project_slug}")

Get the live environment in the new project:

response = client.environments.get_all(
    project_slug=new_project.project_slug
)

live_env = next((env for env in response.environments if env.type == "LIVE"), None)
print(f"Live environment: {live_env.environment_slug}")

Alternatively, create a new custom environment:

response = client.environments.create(
    project_slug=new_project.project_slug,
    name="My custom environment",
    type="TEST"
)

custom_env = response.environment
print(f"Created environment: {custom_env.environment_slug}")

Create a new secret in the live environment:

response = client.secrets.create(
    project_slug=new_project.project_slug,
    environment_slug=live_env.environment_slug
)

secret = response.secret
print(f"Created secret: {secret.secret_id}")

Get SDK configuration:

response = client.sdk.get_consumer_config(
    project_slug=new_project.project_slug,
    environment_slug=live_env.environment_slug
)

print("Consumer SDK config:", response.config)

Type Safety

All request and response types are fully typed using Pydantic models. Import them from the models subpackages:

from stytch_management.models import projects, environments, secrets

# Responses are typed
response: projects.CreateResponse = client.projects.create(
    name="My project",
    vertical="B2B"
)

Error Handling

from stytch_management import Client, StytchError, ClientError

client = Client(
    workspace_key_id="workspace-test-...",
    workspace_key_secret="secret-test-..."
)

try:
    client.projects.get(project_slug="invalid-slug")
except StytchError as e:
    print(f"Stytch error: {e.error_type}")
    print(f"Message: {e.error_message}")
    print(f"Request ID: {e.request_id}")
except ClientError as e:
    print(f"Client error: {e.message}")

Running Tests

This library includes comprehensive integration tests that verify functionality against the Stytch API. These tests create and clean up disposable projects and resources.

Prerequisites

To run the tests, you need valid Stytch Management API credentials:

export STYTCH_WORKSPACE_KEY_ID="your-workspace-key-id"
export STYTCH_WORKSPACE_KEY_SECRET="your-workspace-key-secret"

Important: Tests will be skipped if these environment variables are not set. The tests create real resources in your workspace but clean them up automatically.

Running All Tests

# Install dependencies (if not already installed)
pip install -r requirements_dev.txt

# Run all tests
python -m unittest discover test/

# Run a specific test file
python test/test_secrets.py

Test Coverage

The test suite includes integration tests for:

  • Email Templates - Create, get, update, delete, and default management
  • Environments - Environment lifecycle with user locking and IDP configurations
  • Secrets - Secret creation, retrieval, and deletion
  • Public Tokens - Public token management
  • JWT Templates - Session and M2M JWT template configuration
  • Redirect URLs - URL validation and type management
  • Password Strength Config - LUDS and ZXCVBN policy configuration
  • Country Code Allowlist - SMS and WhatsApp country code management

Each test suite:

  • ✓ Creates disposable projects/environments
  • ✓ Tests all CRUD operations
  • ✓ Validates error handling
  • ✓ Cleans up all resources automatically
  • ✓ Runs independently without side effects

Continuous Integration

Tests are designed to run in CI environments. Set the environment variables in your CI configuration:

# Example GitHub Actions
env:
  STYTCH_WORKSPACE_KEY_ID: ${{ secrets.STYTCH_WORKSPACE_KEY_ID }}
  STYTCH_WORKSPACE_KEY_SECRET: ${{ secrets.STYTCH_WORKSPACE_KEY_SECRET }}

Development

See DEVELOPMENT.md for information on building and testing the SDK.

Documentation

See the full Stytch Management API documentation for more details on available endpoints and functionality.

Support

If you've found a bug, open an issue!

If you have questions or want help troubleshooting, join us in Slack or email support@stytch.com.

If you've found a security vulnerability, please follow our responsible disclosure instructions.

License

MIT

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

stytch_management-1.0.0.tar.gz (35.7 kB view details)

Uploaded Source

Built Distribution

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

stytch_management-1.0.0-py3-none-any.whl (45.4 kB view details)

Uploaded Python 3

File details

Details for the file stytch_management-1.0.0.tar.gz.

File metadata

  • Download URL: stytch_management-1.0.0.tar.gz
  • Upload date:
  • Size: 35.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stytch_management-1.0.0.tar.gz
Algorithm Hash digest
SHA256 ee473019fa6e1994c3d504729ce2e653456815807899b1a84958c7aa0a2012b9
MD5 11a87c18f3d6ac79c46c237738bfdda0
BLAKE2b-256 7523cdfbf7f11964bb9e30805c4b7a5c7a3a667e8bf03af6ddb393585575973a

See more details on using hashes here.

File details

Details for the file stytch_management-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for stytch_management-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7d4140c7126c14ef816ea89da5bb1d0360ece8bc50a0e2d753734cc7a0d92cf7
MD5 c1c1ec9d6fabdd5625e8fada9f3454d4
BLAKE2b-256 b24a5d02f3ba4e8e1d688c520b9f3b498cefbb4ce979c00de9c9b563c5f862b2

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