Skip to content

Commit 8b6f8b5

Browse files
Merge pull request #290604 from mrm9084/PythonFMRemovePreview
Python fm remove preview
2 parents ddce18b + 1264ee6 commit 8b6f8b5

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

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

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,12 @@ ms.service: azure-app-configuration
99
ms.devlang: python
1010
ms.custom: devx-track-python
1111
ms.topic: tutorial
12-
ms.date: 09/10/2024
13-
zone_pivot_groups: feature-management
12+
ms.date: 11/15/2024
1413
#Customer intent: I want to control feature availability in my app by using the Feature Management library.
1514
---
1615

1716
# Python feature management
1817

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-
3018
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.
3119

3220
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 +301,6 @@ When defining an audience, users and groups can be excluded from the audience. E
313301

314302
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.
315303

316-
:::zone target="docs" pivot="preview-version"
317-
318304
## Variants
319305

320306
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 +588,6 @@ When a feature flag is evaluated and telemetry is enabled, the feature manager c
602588
| `Variant` | The assigned variant. |
603589
| `VariantAssignmentReason` | The reason why the variant is assigned. |
604590

605-
:::zone-end
606-
607591
## Next steps
608592

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

0 commit comments

Comments
 (0)