-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.py
More file actions
29 lines (27 loc) · 665 Bytes
/
main.py
File metadata and controls
29 lines (27 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import logging
from modules.tui import options
from services.dazn import dazn
from services.disney import disney
from services.hbo import hbo
from services.espn import espn
from services.paramount import paramount_ as paramount
from services.direct import direct
if __name__ == "__main__":
logging.getLogger().setLevel(logging.CRITICAL)
service = options()
match service:
case 1:
dazn()
case 2:
disney()
case 3:
hbo()
case 4:
espn()
case 5:
paramount()
case 6:
print("Soon..")
exit()
case 7:
exit()