From 6168ea0539152b0f8522678e56b159fcb9a89239 Mon Sep 17 00:00:00 2001 From: cube Date: Sat, 30 May 2026 22:24:58 +0000 Subject: [PATCH 1/4] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d32500a..c4eb259 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,10 @@ scrapes procyclingstats livestats homepage and timeline timeline updates are simply the titles, so sometimes you get something like "ranking after x km" or "present riders today from last years top 20" with no details. for now i am not getting the details from underneath, because for the most part they can be ignored. the action timeline headings like "wheel change for x rider" are good enough when they come through. -will try to get situation feed next, although it is not always visible so a challenge... +# todo + +-[] timeline items with details +-[] pypi package ?? # setup (windows) From 8cd8651da726d6e24e8c859630e6836dd8cbe9a7 Mon Sep 17 00:00:00 2001 From: cube Date: Sat, 30 May 2026 22:25:29 +0000 Subject: [PATCH 2/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c4eb259..770a6f9 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ timeline updates are simply the titles, so sometimes you get something like "ran # todo --[] timeline items with details --[] pypi package ?? +-[ ] timeline items with details +-[ ] pypi package ?? # setup (windows) From e0fd915d5c1326dabbc87542859220510d9de35a Mon Sep 17 00:00:00 2001 From: cube Date: Sat, 30 May 2026 22:25:59 +0000 Subject: [PATCH 3/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 770a6f9..b853f9b 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ timeline updates are simply the titles, so sometimes you get something like "ran # todo --[ ] timeline items with details --[ ] pypi package ?? +- [ ] timeline items with details +- [ ] pypi package ?? # setup (windows) From 95d14dd48e0e9e55becfe747eec5010f7b6bae40 Mon Sep 17 00:00:00 2001 From: cube Date: Sat, 30 May 2026 22:28:29 +0000 Subject: [PATCH 4/4] Update example_timeline_all.py --- example_timeline_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_timeline_all.py b/example_timeline_all.py index 57c7307..d091a94 100644 --- a/example_timeline_all.py +++ b/example_timeline_all.py @@ -13,6 +13,6 @@ if len(stats.races) > 0: # prints in reverse so you dont have to scroll up to the most recent :P count = len(race.timeline) - 1 for item in race.timeline: - print(item[count]) + print(race.timeline[count]) print("===================") count -= 1 \ No newline at end of file