Skip to main content

hexastack-flags

hexastack-flags

CNCF OpenFeature provider adapters and enterprise feature flagging for Hexastack.

Part of the Hexastack Framework.

PyPI: hexastack-flags Python 3.13+ Coverage License: Apache 2.0


1. Architectural Overview

hexastack-flags provides the production-grade adapter connecting Hexastack's FeatureFlagPort to the CNCF OpenFeature Python SDK.

It decouples your domain, CQRS handlers, REST routes, Typer commands, and GraphQL resolvers from proprietary feature flagging APIs, allowing seamless integration with Flagd, Unleash, Flipt, GO Feature Flag, or local in-memory providers.

graph TD
    APP["Driving Adapters (FastAPI / CLI / GraphQL)"]
    CQRS["CQRS Middleware Pipeline"]
    PORT["FeatureFlagPort (hexastack-core)"]
    ADAPTER["OpenFeatureFlagAdapter (hexastack-flags)"]
    OF_SDK["CNCF OpenFeature SDK"]

    subgraph Providers ["OpenFeature Providers"]
        FLAGD["FlagdProvider (gRPC / Kubernetes)"]
        UNLEASH["UnleashProvider"]
        MEM["InMemoryProvider"]
        ENV["EnvProvider"]
    end

    APP --> PORT
    CQRS --> PORT
    PORT -.-> ADAPTER
    ADAPTER --> OF_SDK
    OF_SDK --> FLAGD
    OF_SDK --> UNLEASH
    OF_SDK --> MEM
    OF_SDK --> ENV

2. Quickstart

Installation

# Core OpenFeature adapter with In-Memory support
pip install hexastack-flags

# With Flagd provider
pip install "hexastack-flags[flagd]"

Configuration (hexastack.toml or pyproject.toml)

[hexastack.flags]
provider = "flagd" # "in_memory", "flagd", "env"
host = "localhost"
port = 8013
cache = true
timeout_ms = 5000

3. Evaluation Examples

from hexastack_core.ports.feature_flags import FeatureFlagPort
from hexastack_core.domain.feature_flags import EvaluationContext

flags = container.resolve(FeatureFlagPort)

# 1. Simple boolean toggle
if flags.is_enabled("features.checkout.v2", default=False):
    ...

# 2. Contextual evaluation (multi-tenant / user targeting)
ctx = EvaluationContext(user_id="usr_123", tenant_id="tenant-alpha")
theme = flags.get_string_value("features.ui.theme", default="light", context=ctx)

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hexastack_flags-0.2.0.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

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

hexastack_flags-0.2.0-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file hexastack_flags-0.2.0.tar.gz.

File metadata

  • Download URL: hexastack_flags-0.2.0.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hexastack_flags-0.2.0.tar.gz
Algorithm Hash digest
SHA256 651e8125a02c03f95b7439109080b7bca32f9abe87d5a1743cd819cf6baa6ead
MD5 eab91d20bbd4b024caff37768c2c457a
BLAKE2b-256 7b420a24ab55bc2b019b144c397542c34f4221ba39393d5761bb89e81045aefb

See more details on using hashes here.

File details

Details for the file hexastack_flags-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for hexastack_flags-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 252b529c3237b06217ef508c01a853c540b8fef6a63e20dff4e6bc74d2e5fe1a
MD5 1dbbce49f10b86a23194b3488f79d142
BLAKE2b-256 b1cb4ce3114e53c46fb4481a5c3bc886e8ac700b24e1868e1e2f8c11ef58bb2a

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.0

2 files

This release

0.2.0 This release

2 files

0.1.0

2 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