Skip to main content

toggly

Feature flag management SDK for Python - zero dependencies core library.

Can be used WITH or WITHOUT Toggly.io.

PyPI License: MIT Documentation Website

What is a Feature Flag

A feature flag (or feature toggle) is a software development technique that allows you to enable or disable features in your application without deploying new code. This enables:

  • Gradual Rollouts: Release features to a percentage of users
  • A/B Testing: Test different implementations with different user groups
  • Kill Switches: Instantly disable problematic features
  • Environment-Specific: Different feature states per environment

Installation

pip install toggly

# Optional: send usage/metrics over gRPC
pip install toggly[telemetry]

Entity ContextProperty filters evaluate {kind, key, attributes} and are ANDed with user filters. Register kinds with register_context (startup PUT to sdk/{appKey}/contexts, opt out via register_contexts_on_startup=False).

Segment filters (BrowserFamily, BrowserLanguage, Country, DeviceType, OS) and UserClaims read EvaluationContext.request / claims. Map HTTP headers with HttpRequestMapper.from_http_headers (or set RequestContext directly). Sticky percentage buckets use Definitions SHA-256 (featureKey\nidentity).

Quick Start

Basic Usage with Toggly.io

from toggly import TogglyClient, TogglyConfig

# Create configuration
config = TogglyConfig(
    app_key="your-app-key",
    environment="Production"
)

# Initialize client
client = TogglyClient(config)
client.init()

# Check if a feature is enabled
if client.is_enabled("new-checkout-flow"):
    # New checkout implementation
    pass
else:
    # Original checkout implementation
    pass

Using Decorators

from toggly import TogglyClient, TogglyConfig, feature_flag, set_default_client

# Set up default client
config = TogglyConfig(app_key="your-app-key")
client = TogglyClient(config)
client.init()
set_default_client(client)

# Use decorator to control function execution
@feature_flag("new-algorithm")
def calculate_score(data):
    return new_algorithm(data)

# Or with a fallback
@feature_flag("new-algorithm", fallback=old_algorithm)
def calculate_score(data):
    return new_algorithm(data)

Using Context Manager

with client.feature_context("new-feature") as enabled:
    if enabled:
        # Feature is enabled
        do_new_thing()
    else:
        # Feature is disabled
        do_old_thing()

Async Support

from toggly import AsyncTogglyClient, TogglyConfig

config = TogglyConfig(app_key="your-app-key")
client = AsyncTogglyClient(config)

async def main():
    await client.init()

    if await client.is_enabled("new-feature"):
        await do_new_thing()

Usage and business metrics

When an app_key is set, the client batches feature usage and business metrics and sends them to Toggly over gRPC (~1 minute, plus flush on close() / process exit). Core evaluate works without gRPC; install toggly[telemetry] to send. gRPC calls attach metadata key ua (lowercase for grpcio; same semantics as .NET/Go/Node UA).

# Checks are recorded automatically from is_enabled when enable_usage_tracking
if client.is_enabled("new-checkout-flow"):
    client.record_usage("new-checkout-flow")  # interaction
    client.record_view("new-checkout-flow")   # rendered

client.measure("revenue", 9.99, {"feature": "new-checkout-flow"})
client.increment_counter("checkout_clicks")
client.observe("cart_depth", 3)
client.flush_telemetry()  # optional; also runs on close()
Option Default Description
enable_usage_tracking True Record checks / usage / views via Usage.SendStats
enable_metrics True measure / increment_counter / observe via Metrics.SendMetrics
metrics_base_url https://app.toggly.io gRPC endpoint (separate from definitions base_url)
usage_flush_interval / metrics_flush_interval 60 Seconds; 0 disables the timer

Set TOGGLY_DISABLE_TELEMETRY=1 to disable both pipelines.

Feature Gates (Multiple Features)

Evaluate multiple features together:

from toggly import FeatureRequirement

# All features must be enabled
if client.evaluate_gate(
    ["feature-a", "feature-b"],
    requirement=FeatureRequirement.ALL
):
    # Both features are enabled
    pass

# Any feature must be enabled
if client.evaluate_gate(
    ["feature-a", "feature-b"],
    requirement=FeatureRequirement.ANY
):
    # At least one feature is enabled
    pass

User Targeting

Target features to specific users or groups:

from toggly import EvaluationContext

# Create user context
context = EvaluationContext(
    identity="user-123",
    groups=["beta-testers", "premium"],
    traits={"country": "US", "plan": "enterprise"}
)

# Evaluate with context
if client.is_enabled("premium-feature", context):
    # Feature is enabled for this user
    pass

Offline Mode (Without Toggly.io)

Use feature flags without a server connection:

from toggly import TogglyClient, TogglyConfig

config = TogglyConfig(
    feature_defaults={
        "feature-a": True,
        "feature-b": False,
        "feature-c": True
    }
)

client = TogglyClient(config)
client.init()

# Works completely offline using defaults
if client.is_enabled("feature-a"):
    pass

Caching

Use file-based caching for offline support:

from toggly import TogglyClient, TogglyConfig, FileSnapshotProvider

provider = FileSnapshotProvider(directory="/path/to/cache")

config = TogglyConfig(
    app_key="your-app-key",
    snapshot_provider=provider
)

client = TogglyClient(config)
client.init()  # Loads from cache if server unavailable

State Change Handlers

React to feature flag changes:

def on_feature_change(key: str, old_value: bool, new_value: bool):
    print(f"Feature {key} changed: {old_value} -> {new_value}")

config = TogglyConfig(
    app_key="your-app-key",
    state_change_handlers=[on_feature_change]
)

Custom Evaluators

Register custom filter evaluators:

from toggly.evaluator import FilterEvaluator, FeatureFilter
from toggly import EvaluationContext

class CustomEvaluator(FilterEvaluator):
    def evaluate(
        self,
        filter_: FeatureFilter,
        feature_key: str,
        context: EvaluationContext,
    ) -> bool:
        # Custom evaluation logic
        return context.traits.get("custom_field") == filter_.parameters.get("value")

# Register with client
client.registry.register("CustomFilter", CustomEvaluator())

Configuration Options

Option Type Default Description
app_key str None Your Toggly application key
environment str "Production" Environment name
base_url str "https://client.toggly.io" API base URL
identity str None Default user identity
feature_defaults dict {} Default feature flag values
refresh_interval float 180.0 Auto-refresh interval (seconds)
use_signed_definitions bool False Verify definition signatures
connect_timeout float 10.0 Connection timeout (seconds)
request_timeout float 30.0 Request timeout (seconds)
snapshot_provider SnapshotProvider None Cache provider
enable_usage_tracking bool True Track feature usage via gRPC
enable_metrics bool True Send business metrics via gRPC
metrics_base_url str "https://app.toggly.io" Usage/metrics gRPC base URL
usage_flush_interval float 60.0 Usage flush interval (seconds)
metrics_flush_interval float 60.0 Metrics flush interval (seconds)
disable_background_refresh bool False Disable auto-refresh

Debug Information

Get current client state:

info = client.get_debug_info()
print(f"Environment: {info.environment}")
print(f"Feature count: {info.feature_count}")
print(f"Last refresh: {info.last_refresh}")
print(f"Initialized: {info.is_initialized}")

Framework Integrations

For framework-specific features, use the integration packages:

  • Django: pip install toggly toggly-django
  • Flask: pip install toggly toggly-flask
  • FastAPI: pip install toggly toggly-fastapi
  • Redis/Memcached caching: pip install toggly toggly-cache[redis]

Requirements

  • Python 3.8+
  • No required dependencies (zero-dependency core)
  • Optional: toggly[telemetry] for usage/metrics gRPC (grpcio, protobuf)
  • Optional: toggly[websocket] for live updates

Type Hints

The library is fully typed with Python type hints and includes py.typed marker for static type checkers.

from toggly import TogglyClient, TogglyConfig, EvaluationContext

config: TogglyConfig = TogglyConfig(app_key="key")
client: TogglyClient = TogglyClient(config)
enabled: bool = client.is_enabled("feature")

Thread Safety

The TogglyClient is thread-safe and can be shared across threads. Internal state is protected with locks.

License

MIT

Find Out More

Visit Toggly.io for more information and to create your free account.

Initial context for remote variants

Requires toggly 0.7.0 (release pending; these APIs are not in the currently published packages).

from toggly import TogglyClient, TogglyConfig

client = TogglyClient(TogglyConfig(
    app_key="your-app-key",
    enable_variants=True,
    identity="user-123",              # Stable identifier for this variants client.
    variant_groups=["beta"],           # Membership used by targeting rules.
    variant_claims={"plan": "pro"},    # String attributes used by targeting rules.
))
client.init()  # The first variants request already contains this complete context.

Startup context avoids an initial variants fetch with incomplete targeting followed by a second fetch. Use one variants client per fixed application-wide context; never change a shared server client's identity for each incoming request. These defaults do not replace request-local EvaluationContext for ordinary local boolean evaluation. Enabling remote variants retains the SDK's existing client-wide evaluated-flag behavior.

Groups are trimmed and sent as repeated parameters. Claims must be string-to-string mappings: empty names/values are omitted, whitespace is preserved, and the first 20 claim names in sorted order are sent. Omitted or empty collections send no targeting parameters. Caller collections are copied. Variants caches and conditional validators match the complete context; legacy unscoped variants caches require a fresh fetch. Global definition caches retain their existing behavior.

Release files for toggly 0.7.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for toggly 0.7.2
File Size Uploaded
toggly-0.7.2.tar.gz 85.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for toggly 0.7.2
File Interpreter ABI Platform
toggly-0.7.2-py3-none-any.whl Python 3 none any Details

Total release size: 158.0 kB

Release files / toggly-0.7.2.tar.gz

Download URL toggly-0.7.2.tar.gz
Size 85.2 kB
Tags Source
SHA-256 checksum
How to use checksums
74a7b090d42a75b95a7b3bd4d7a9f96b5251f7fbb98a24e0f508412f81ffcb15
BLAKE2b-256 checksum
How to use checksums
59f7159247f35c8c756e297f65cad86ede025c7aa0842014676b040738188298
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / toggly-0.7.2-py3-none-any.whl

Download URL toggly-0.7.2-py3-none-any.whl
Size 72.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
1a49c3d3f0862b87ad701c937dfa796b659156ab79887ee815c37cf517cb87d2
BLAKE2b-256 checksum
How to use checksums
56576a6d8d018171fc3f88c7f2ece5d88df785fb507e84ed255c742d27840e1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release history Release notifications | RSS feed

1.1.0

2 release files

1.0.0

2 release files

This release

0.7.2 This release

2 release files

0.7.1

2 release files

0.7.0

2 release files

0.4.0

2 release files

0.3.0

2 release files

0.1.0

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page