Coverage for bundesliga_tippspiel/background/__init__.py: 100%

Shortcuts on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1"""LICENSE 

2Copyright 2017 Hermann Krumrey <hermann@krumreyh.com> 

3 

4This file is part of bundesliga-tippspiel. 

5 

6bundesliga-tippspiel is free software: you can redistribute it and/or modify 

7it under the terms of the GNU General Public License as published by 

8the Free Software Foundation, either version 3 of the License, or 

9(at your option) any later version. 

10 

11bundesliga-tippspiel is distributed in the hope that it will be useful, 

12but WITHOUT ANY WARRANTY; without even the implied warranty of 

13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

14GNU General Public License for more details. 

15 

16You should have received a copy of the GNU General Public License 

17along with bundesliga-tippspiel. If not, see <http://www.gnu.org/licenses/>. 

18LICENSE""" 

19 

20from typing import Dict, Tuple, Callable 

21from bundesliga_tippspiel.background.season_events import handle_season_events 

22from bundesliga_tippspiel.background.reminders import send_due_reminders 

23from bundesliga_tippspiel.background.pointscalc import update_leaderboard 

24from bundesliga_tippspiel.background.openligadb import update_openligadb 

25 

26 

27bg_tasks: Dict[str, Tuple[int, Callable]] = { 

28 "update_db_data": (30, update_openligadb), 

29 "send_due_reminders": (60, send_due_reminders), 

30 "handle_season_events": (60 * 60 * 24, handle_season_events), 

31 "update_leaderboard": (30, update_leaderboard) 

32} 

33""" 

34A dictionary containing background tasks for the flask application 

35"""