Skip to content

Commit 9705947

Browse files
committed
Remove Preview
1 parent bf0e9f6 commit 9705947

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

articles/azure-app-configuration/feature-management-python-reference.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,6 @@ zone_pivot_groups: feature-management
1616

1717
# Python feature management
1818

19-
:::zone target="docs" pivot="stable-version"
20-
21-
[![Feature Management](https://img.shields.io/pypi/v/FeatureManagement?color=blue)](https://pypi.org/project/FeatureManagement/)<br>
22-
:::zone-end
23-
24-
:::zone target="docs" pivot="preview-version"
25-
26-
[![Feature Management](https://img.shields.io/pypi/v/FeatureManagement/2.0.0b2?color=blue)](https://pypi.org/project/FeatureManagement/2.0.0b2/)<br>
27-
28-
:::zone-end
29-
3019
Python feature management library provides a way to develop and expose application functionality based on feature flags. Once a new feature is developed, many applications have special requirements, such as when the feature should be enabled and under what conditions. This library provides a way to define these relationships, and also integrates into common Python code patterns to make exposing these features possible.
3120

3221
Feature flags provide a way for Python applications to turn features on or off dynamically. Developers can use feature flags in simple use cases like conditional statements.
@@ -313,8 +302,6 @@ When defining an audience, users and groups can be excluded from the audience. E
313302

314303
In the above example, the feature is enabled for users named `Jeff` and `Alicia`. It's also enabled for users in the group named `Ring0`. However, if the user is named `Mark`, the feature is disabled, regardless of if they are in the group `Ring0` or not. Exclusions take priority over the rest of the targeting filter.
315304

316-
:::zone target="docs" pivot="preview-version"
317-
318305
## Variants
319306

320307
When new features are added to an application, there may come a time when a feature has multiple different proposed design options. A common solution for deciding on a design is some form of A/B testing. A/B testing involves providing a different version of the feature to different segments of the user base and choosing a version based on user interaction. In this library, this functionality is enabled by representing different configurations of a feature with variants.
@@ -602,8 +589,6 @@ When a feature flag is evaluated and telemetry is enabled, the feature manager c
602589
| `Variant` | The assigned variant. |
603590
| `VariantAssignmentReason` | The reason why the variant is assigned. |
604591

605-
:::zone-end
606-
607592
## Next steps
608593

609594
To learn how to use feature flags in your applications, continue to the following quickstarts.

0 commit comments

Comments
 (0)