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.
Files changed (23) hide show
  1. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/.gitignore +2 -0
  2. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/PKG-INFO +9 -2
  3. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/README.md +7 -1
  4. pyrox_client-0.2.2/example_notebooks/event_dists/event_2024_Dallas.png +0 -0
  5. pyrox_client-0.2.2/example_notebooks/event_dists/event_2024_Hamburg.png +0 -0
  6. pyrox_client-0.2.2/example_notebooks/event_dists/event_2024_London.png +0 -0
  7. pyrox_client-0.2.2/example_notebooks/event_dists/event_2024_Paris.png +0 -0
  8. pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Barcelona.png +0 -0
  9. pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Berlin.png +0 -0
  10. pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Glasgow.png +0 -0
  11. pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Johannesburg.png +0 -0
  12. pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Malaga.png +0 -0
  13. pyrox_client-0.2.2/example_notebooks/event_dists/event_2025_Shanghai.png +0 -0
  14. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/pyproject.toml +5 -0
  15. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/__init__.py +1 -1
  16. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/.venv-pyrox-test/lib/python3.13/site-packages/pandas/pyproject.toml +0 -0
  17. {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
  18. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/img.png +0 -0
  19. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/img_1.png +0 -0
  20. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/constants.py +0 -0
  21. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/core.py +0 -0
  22. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/errors.py +0 -0
  23. {pyrox_client-0.2.1 → pyrox_client-0.2.2}/src/pyrox/helpers.py +0 -0
@@ -1,3 +1,5 @@
1
1
  *.pyc
2
2
 
3
3
  /src/pyrox/__pycache__/
4
+
5
+ site/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyrox-client
3
- Version: 0.2.1
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
  ![Integration Tests](https://github.com/vmatei2/pyrox-client/actions/workflows/integration.yml/badge.svg)
27
28
 
28
29
 
30
+ [![Docs](https://img.shields.io/badge/docs-mkdocs-0b5d4a)](https://vmatei2.github.io/pyrox-client/)
29
31
  [![PyPI - Version](https://img.shields.io/pypi/v/pyrox-client.svg)](https://pypi.org/project/pyrox-client/)
30
32
  [![Wheel](https://img.shields.io/pypi/wheel/pyrox-client.svg)](https://pypi.org/project/pyrox-client/)
31
33
  [![Downloads](https://static.pepy.tech/badge/pyrox-client/month)](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
  ![Integration Tests](https://github.com/vmatei2/pyrox-client/actions/workflows/integration.yml/badge.svg)
7
7
 
8
8
 
9
+ [![Docs](https://img.shields.io/badge/docs-mkdocs-0b5d4a)](https://vmatei2.github.io/pyrox-client/)
9
10
  [![PyPI - Version](https://img.shields.io/pypi/v/pyrox-client.svg)](https://pypi.org/project/pyrox-client/)
10
11
  [![Wheel](https://img.shields.io/pypi/wheel/pyrox-client.svg)](https://pypi.org/project/pyrox-client/)
11
12
  [![Downloads](https://static.pepy.tech/badge/pyrox-client/month)](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
@@ -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
  ]
@@ -2,7 +2,7 @@ from .core import PyroxClient
2
2
  from .errors import PyroxError, RaceNotFound, AthleteNotFound
3
3
  from .constants import *
4
4
 
5
- __version__ = "0.2.1"
5
+ __version__ = "0.2.2"
6
6
 
7
7
 
8
8
  ## what is available to users
File without changes
File without changes