From f7071b6732f463f4c954ed934c1982acfd3b6810 Mon Sep 17 00:00:00 2001 From: Fabian Fichter Date: Thu, 22 Feb 2024 14:25:46 +0100 Subject: [PATCH] Update update_tournaments.py --- _scripts/update_tournaments.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_scripts/update_tournaments.py b/_scripts/update_tournaments.py index aafbaa5..8ba9e5c 100644 --- a/_scripts/update_tournaments.py +++ b/_scripts/update_tournaments.py @@ -13,6 +13,7 @@ ALL_VARIANTS = set(('shogi', 'xiangqi', 'janggi', 'makruk')) FESA_URL = 'http://fesashogi.eu/index.php?mid=2' DXB_URL = 'http://chinaschach.de/blog/events/list/?ical=1' +FFS_URL = 'https://shogi.fr/events/liste/?ical=1' TOURNEY_MOMENTUMS_URL = 'https://tourney-momentums.eu/tournaments/category/english/list/?ical=1' @@ -108,6 +109,7 @@ def prettify_location(locations): calendars.extend([ get_ics_calendar(TOURNEY_MOMENTUMS_URL, current.columns, ('shogi', 'xiangqi', 'janggi', 'makruk')), get_ics_calendar(DXB_URL, current.columns, ('xiangqi',)), + get_ics_calendar(FFS_URL, current.columns, ('shogi',)), get_html_calendar(FESA_URL, current.columns), ]) merged = pd.concat(calendars)