pyrox-client 0.2.1__tar.gz → 0.2.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.
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/.gitignore +2 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/PKG-INFO +9 -2
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/README.md +7 -1
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2024_Dallas.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2024_Hamburg.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2024_London.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2024_Paris.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Barcelona.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Berlin.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Glasgow.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Johannesburg.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Malaga.png +0 -0
- pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Shanghai.png +0 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/pyproject.toml +5 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/__init__.py +1 -1
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/.venv-pyrox-test/lib/python3.13/site-packages/pandas/pyproject.toml +0 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/.venv-pyrox-test/lib/python3.13/site-packages/pyarrow/tests/data/orc/README.md +0 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/img.png +0 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/img_1.png +0 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/constants.py +0 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/core.py +0 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/errors.py +0 -0
- {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/helpers.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyrox-client
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: HYROX race data client – retrieve full race results via Python
|
|
5
5
|
Project-URL: Homepage, https://github.com/vmatei2/pyrox-client
|
|
6
6
|
Project-URL: Issues, https://github.com/vmatei2/pyrox-client/issues
|
|
@@ -16,6 +16,7 @@ Requires-Dist: pandas>=2.3.3
|
|
|
16
16
|
Requires-Dist: platformdirs>=4.2.0
|
|
17
17
|
Requires-Dist: pyarrow>=22.0.0
|
|
18
18
|
Requires-Dist: s3fs>=2024.2.0
|
|
19
|
+
Requires-Dist: statsmodels>=0.14.6
|
|
19
20
|
Description-Content-Type: text/markdown
|
|
20
21
|
|
|
21
22
|
# pyrox-client
|
|
@@ -26,6 +27,7 @@ Unofficial Python client for HYROX race results — load public results into pan
|
|
|
26
27
|

|
|
27
28
|
|
|
28
29
|
|
|
30
|
+
[](https://vmatei2.github.io/pyrox-client/)
|
|
29
31
|
[](https://pypi.org/project/pyrox-client/)
|
|
30
32
|
[](https://pypi.org/project/pyrox-client/)
|
|
31
33
|
[](https://pepy.tech/project/pyrox-client)
|
|
@@ -34,6 +36,11 @@ Unofficial Python client for HYROX race results — load public results into pan
|
|
|
34
36
|
|
|
35
37
|
Unofficial Python client for HYROX race results — load public results into pandas DataFrames in a few lines. Built for people who love fitness and data: analyse performance trends, understand HYROX’s unique demands, and open up new research avenues.
|
|
36
38
|
|
|
39
|
+
## Documentation
|
|
40
|
+
|
|
41
|
+
- Live docs: https://vmatei2.github.io/pyrox-client/
|
|
42
|
+
- Local preview: `mkdocs serve`
|
|
43
|
+
|
|
37
44
|
## Install
|
|
38
45
|
|
|
39
46
|
```commandline
|
|
@@ -109,7 +116,7 @@ get_race(
|
|
|
109
116
|
location: str,
|
|
110
117
|
year: int | None = None,
|
|
111
118
|
gender: str | None = None, # "male" | "female" | "mixed"
|
|
112
|
-
division: str | None = None, # "open" | "pro" (case-insensitive contains)
|
|
119
|
+
division: str | None = None, # "open" | "pro" | "pro_doubles" (case-insensitive contains)
|
|
113
120
|
total_time: float | tuple[float | None, float | None] | None = None,
|
|
114
121
|
use_cache: bool = True,
|
|
115
122
|
) -> pd.DataFrame
|
|
@@ -6,6 +6,7 @@ Unofficial Python client for HYROX race results — load public results into pan
|
|
|
6
6
|

|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
[](https://vmatei2.github.io/pyrox-client/)
|
|
9
10
|
[](https://pypi.org/project/pyrox-client/)
|
|
10
11
|
[](https://pypi.org/project/pyrox-client/)
|
|
11
12
|
[](https://pepy.tech/project/pyrox-client)
|
|
@@ -14,6 +15,11 @@ Unofficial Python client for HYROX race results — load public results into pan
|
|
|
14
15
|
|
|
15
16
|
Unofficial Python client for HYROX race results — load public results into pandas DataFrames in a few lines. Built for people who love fitness and data: analyse performance trends, understand HYROX’s unique demands, and open up new research avenues.
|
|
16
17
|
|
|
18
|
+
## Documentation
|
|
19
|
+
|
|
20
|
+
- Live docs: https://vmatei2.github.io/pyrox-client/
|
|
21
|
+
- Local preview: `mkdocs serve`
|
|
22
|
+
|
|
17
23
|
## Install
|
|
18
24
|
|
|
19
25
|
```commandline
|
|
@@ -89,7 +95,7 @@ get_race(
|
|
|
89
95
|
location: str,
|
|
90
96
|
year: int | None = None,
|
|
91
97
|
gender: str | None = None, # "male" | "female" | "mixed"
|
|
92
|
-
division: str | None = None, # "open" | "pro" (case-insensitive contains)
|
|
98
|
+
division: str | None = None, # "open" | "pro" | "pro_doubles" (case-insensitive contains)
|
|
93
99
|
total_time: float | tuple[float | None, float | None] | None = None,
|
|
94
100
|
use_cache: bool = True,
|
|
95
101
|
) -> pd.DataFrame
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -17,6 +17,7 @@ dependencies = [
|
|
|
17
17
|
"platformdirs>=4.2.0",
|
|
18
18
|
"httpx>=0.28.1",
|
|
19
19
|
"pyarrow>=22.0.0", # stable versions with wheels, had issues with latest
|
|
20
|
+
"statsmodels>=0.14.6",
|
|
20
21
|
]
|
|
21
22
|
|
|
22
23
|
classifiers = [
|
|
@@ -51,4 +52,8 @@ dev = [
|
|
|
51
52
|
"ruff>=0.14.7",
|
|
52
53
|
"respx>=0.22.0",
|
|
53
54
|
"requests>=2.31",
|
|
55
|
+
"matplotlib>=3.10.7",
|
|
56
|
+
"seaborn>=0.13.2",
|
|
57
|
+
"ipykernel>=7.1.0",
|
|
58
|
+
"mkdocs>=1.6.1",
|
|
54
59
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|