Back to articles
Gathering Hyrox Race Insights with Python

Gathering Hyrox Race Insights with Python

via Dev.to PythonJives

Overview I've been training for a while now for a series of Hyrox races . I did a mixed doubles race over the holidays, my first solo race last month, and I'm currently working up for another solo in the mid-year. While I've been doing the usual training and preparation, I wanted to take a deeper look at my performance compared to others to see if I can find any insights to improve my time in my next race. If this is something you've been interested in doing, then hopefully this post can provide some insights into how you can do the same with a little bit of Python. Fetching the Race Results Before we can begin to analyse anything, we need to get the data. Hyrox has a public leaderboard where you can view race results, but it doesn’t offer any way to export the data other than printing the page. Fortunately, there’s an unofficial Python API available called the pyrox-client that we can use to export the data in a more usable format. Use the following boilerplate, configure the paramete

Continue reading on Dev.to Python

Opens in a new tab

Read Full Article
2 views

Related Articles