flagsmith 3.9.0__tar.gz → 3.9.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {flagsmith-3.9.0 → flagsmith-3.9.2}/PKG-INFO +5 -5
- {flagsmith-3.9.0 → flagsmith-3.9.2}/README.md +0 -2
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/flagsmith.py +1 -1
- {flagsmith-3.9.0 → flagsmith-3.9.2}/pyproject.toml +2 -2
- {flagsmith-3.9.0 → flagsmith-3.9.2}/LICENSE +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/__init__.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/analytics.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/exceptions.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/models.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/offline_handlers.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/polling_manager.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/py.typed +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/streaming_manager.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/types.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/utils/__init__.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/utils/identities.py +0 -0
- {flagsmith-3.9.0 → flagsmith-3.9.2}/flagsmith/webhooks.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: flagsmith
|
|
3
|
-
Version: 3.9.
|
|
3
|
+
Version: 3.9.2
|
|
4
4
|
Summary: Flagsmith Python SDK
|
|
5
5
|
License: BSD3
|
|
6
6
|
Keywords: feature,flag,flagsmith,remote,config
|
|
@@ -12,7 +12,9 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.9
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
-
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Dist: flagsmith-flag-engine (>=5.3.1,<6.0.0)
|
|
16
18
|
Requires-Dist: pydantic (>=2,<3)
|
|
17
19
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
18
20
|
Requires-Dist: requests-futures (>=1.0.1,<2.0.0)
|
|
@@ -20,8 +22,6 @@ Requires-Dist: sseclient-py (>=1.8.0,<2.0.0)
|
|
|
20
22
|
Project-URL: Documentation, https://docs.flagsmith.com
|
|
21
23
|
Description-Content-Type: text/markdown
|
|
22
24
|
|
|
23
|
-
<img width="100%" src="https://github.com/Flagsmith/flagsmith/raw/main/static-files/hero.png"/>
|
|
24
|
-
|
|
25
25
|
# Flagsmith Python SDK
|
|
26
26
|
|
|
27
27
|
> Flagsmith allows you to manage feature flags and remote config across multiple projects, environments and
|
|
@@ -49,7 +49,7 @@ class Flagsmith:
|
|
|
49
49
|
api_url: typing.Optional[str] = None,
|
|
50
50
|
realtime_api_url: typing.Optional[str] = None,
|
|
51
51
|
custom_headers: typing.Optional[typing.Dict[str, typing.Any]] = None,
|
|
52
|
-
request_timeout_seconds: typing.Optional[int] =
|
|
52
|
+
request_timeout_seconds: typing.Optional[int] = 10,
|
|
53
53
|
enable_local_evaluation: bool = False,
|
|
54
54
|
environment_refresh_interval_seconds: typing.Union[int, float] = 60,
|
|
55
55
|
retries: typing.Optional[Retry] = None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "flagsmith"
|
|
3
|
-
version = "3.9.
|
|
3
|
+
version = "3.9.2"
|
|
4
4
|
description = "Flagsmith Python SDK"
|
|
5
5
|
authors = ["Flagsmith <support@flagsmith.com>"]
|
|
6
6
|
license = "BSD3"
|
|
@@ -13,7 +13,7 @@ packages = [{ include = "flagsmith" }]
|
|
|
13
13
|
python = ">=3.8.1,<4"
|
|
14
14
|
requests = "^2.32.3"
|
|
15
15
|
requests-futures = "^1.0.1"
|
|
16
|
-
flagsmith-flag-engine = "^5.1
|
|
16
|
+
flagsmith-flag-engine = "^5.3.1"
|
|
17
17
|
sseclient-py = "^1.8.0"
|
|
18
18
|
pydantic = "^2"
|
|
19
19
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|