otf-api 0.9.3__tar.gz → 0.10.0__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.
- {otf_api-0.9.3 → otf_api-0.10.0}/PKG-INFO +3 -1
- {otf_api-0.9.3 → otf_api-0.10.0}/pyproject.toml +3 -1
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/__init__.py +1 -1
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/api.py +365 -204
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/__init__.py +13 -7
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/enums.py +18 -4
- otf_api-0.10.0/src/otf_api/models/performance_summary.py +168 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/studio_detail.py +2 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/utils.py +1 -1
- otf_api-0.9.3/src/otf_api/models/performance_summary_detail.py +0 -89
- otf_api-0.9.3/src/otf_api/models/performance_summary_list.py +0 -50
- {otf_api-0.9.3 → otf_api-0.10.0}/LICENSE +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/README.md +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/auth/__init__.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/auth/auth.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/auth/user.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/auth/utils.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/exceptions.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/filters.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/logging.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/base.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/body_composition_list.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/bookings.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/challenge_tracker_content.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/challenge_tracker_detail.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/classes.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/lifetime_stats.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/member_detail.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/member_membership.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/member_purchases.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/mixins.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/notifications.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/out_of_studio_workout_history.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/studio_services.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/models/telemetry.py +0 -0
- {otf_api-0.9.3 → otf_api-0.10.0}/src/otf_api/py.typed +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: otf-api
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.10.0
|
4
4
|
Summary: Python OrangeTheory Fitness API Client
|
5
5
|
License: MIT
|
6
6
|
Author: Jessica Smith
|
@@ -19,6 +19,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
19
19
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
21
21
|
Requires-Dist: attrs (>=24.3.0,<25.0.0)
|
22
|
+
Requires-Dist: cachetools (>=5.5.0)
|
22
23
|
Requires-Dist: httpx (>=0.27.2)
|
23
24
|
Requires-Dist: humanize (>=4.9.0,<5.0.0)
|
24
25
|
Requires-Dist: inflection (==0.5.*)
|
@@ -26,6 +27,7 @@ Requires-Dist: mypy-boto3-cognito-idp (>=1.35.93,<2.0.0)
|
|
26
27
|
Requires-Dist: pint (==0.24.*)
|
27
28
|
Requires-Dist: pycognito (==2024.5.1)
|
28
29
|
Requires-Dist: pydantic (>=2.7.3)
|
30
|
+
Requires-Dist: tenacity (>=9.0.0,<10.0.0)
|
29
31
|
Requires-Dist: yarl (>=1.18.3,<2.0.0)
|
30
32
|
Project-URL: Documentation, https://otf-api.readthedocs.io/en/stable/
|
31
33
|
Description-Content-Type: text/markdown
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "otf-api"
|
3
|
-
version = "0.
|
3
|
+
version = "0.10.0"
|
4
4
|
description = "Python OrangeTheory Fitness API Client"
|
5
5
|
authors = ["Jessica Smith <j.smith.git1@gmail.com>"]
|
6
6
|
license = "MIT"
|
@@ -31,6 +31,8 @@ pycognito = "2024.5.1"
|
|
31
31
|
pydantic = ">=2.7.3"
|
32
32
|
yarl = "^1.18.3"
|
33
33
|
mypy-boto3-cognito-idp = "^1.35.93"
|
34
|
+
tenacity = "^9.0.0"
|
35
|
+
cachetools = ">=5.5.0"
|
34
36
|
|
35
37
|
[tool.poetry.group.dev.dependencies]
|
36
38
|
build = "1.2.1"
|