-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmetadata.py
96 lines (93 loc) ยท 3.6 KB
/
metadata.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
DESKTOP_AGENTS = [
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36",
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36"
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/114.0",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36",
]
TEAMS_METADATA = {
"Unavailable": {
"name": "Unavailable",
"url": "",
"logo": ""
},
"ืืืื ืืืคื": {
"name": "Maccabi Haifa",
"url": "https://www.football.co.il/maccabi-haifa",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/4539.png",
},
"ืืคืืขื ืืืจื": {
"name": "Hapoel Hadera",
"url": "https://www.football.co.il/hapoel-hadera",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/22998.png",
},
"ืืคืืขื ืืืคื": {
"name": "Hapoel Haifa",
"url": "https://www.football.co.il/hapoel-haifa",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/14316.png",
},
"ืืืื ืคืชื ืชืงืืื": {
"name": "Maccabi Petah Tikva",
"url": "https://www.football.co.il/maccabi-petah-tikva",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/15006.png",
},
'ืืคืืขื ื"ืฉ': {
"name": "Hapoel Beer Sheva",
"url": "https://www.football.co.il/hapoel-beer-sheva",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/4554.png",
},
"ืืคืืขื ืืืจ ืฉืืข": {
"name": "Hapoel Beer Sheva",
"url": "https://www.football.co.il/hapoel-beer-sheva",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/4554.png",
},
"ืืคืืขื ืชื ืืืื": {
"name": "Hapoel Tel Aviv",
"url": "https://www.football.co.il/hapoel-tel-aviv",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/4530.png",
},
"ืืืื ืื ื ืจืืื ื": {
"name": "Bnei Reineh",
"url": "https://www.football.co.il/bnei-reineh",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/30249.png",
},
"ืืืื ื ืชื ืื": {
"name": "Maccabi Netanya",
"url": "https://www.football.co.il/maccabi-netanya",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/4545.png",
},
"ืื ื ืกืื ืื": {
"name": "Bnei Sakhnin",
"url": "https://www.football.co.il/bnei-sakhnin",
"logo": "https://static.football.co.il/wp-content/themes/kingclub-theme/images/teams/15960.png",
},
}
EMOJI_HEARTS = [
"๐",
"๐",
"๐",
"๐",
"๐",
"๐",
"๐",
"๐ค",
"๐",
"๐",
"๐",
"๐งก",
"๐",
"๐ค",
"โค๏ธ",
"โค๏ธโ๐ฅ",
"๐",
"โฃ๏ธ",
"๐ค",
]
POLL_SENTENCES = [
"ืกืงืจ: ืื ืชื ืฆื?",
"ืกืงืจ: ืื ืชื ืฆื ืืืคืืฉ ืืื ืฉืชื ืืงืืืฆืืช?",
"ืกืงืจ: ืื ืชืืงื ืืคืขื?",
"ืกืงืจ: ืื ืืืืช ืฉืชื ืฆื ืืชืคืชื ืืจืื ืืืื?",
"ืกืงืจ: ืื ืืงืืืฆื ืืืืื ืืืชืจ?",
"ืกืงืจ: ืืืื ืืืืืื ืืืืื ืืืื?",
]