๐Ÿ“… Calendar file generator for triathlonlive.tv upcoming events triathlon-live-calendar.fly.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Creates unique ID for each event

+2
+2
triathlon_live_calendar/scraper.py
··· 1 1 from datetime import timedelta 2 + from hashlib import md5 2 3 from re import compile, findall 3 4 from typing import Tuple 4 5 ··· 31 32 begin=get(begin, DATETIME_FORMAT), 32 33 duration=DEFAULT_DURATION, 33 34 url=url, 35 + uid=md5(url.encode("utf-8")).hexdigest(), 34 36 )