-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.py
More file actions
68 lines (68 loc) · 2.41 KB
/
constants.py
File metadata and controls
68 lines (68 loc) · 2.41 KB
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
TEAMS = {
"KIA": {
"id": "HT",
"full": "KIA 타이거즈",
"color": "#EA0029",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2022/HT.png",
},
"삼성": {
"id": "SS",
"full": "삼성 라이온즈",
"color": "#074CA1",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2022/SS.png",
},
"LG": {
"id": "LG",
"full": "LG 트윈스",
"color": "#C30452",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2022/LG.png",
},
"두산": {
"id": "OB",
"full": "두산 베어스",
"color": "#1A1748",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2025/OB.png",
},
"KT": {
"id": "KT",
"full": "KT 위즈",
"color": "#000000",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2022/KT.png",
},
"SSG": {
"id": "SK",
"full": "SSG 랜더스",
"color": "#CE0E2D",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2024/SK.png",
},
"롯데": {
"id": "LT",
"full": "롯데 자이언츠",
"color": "#041E42",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2022/LT.png",
},
"한화": {
"id": "HH",
"full": "한화 이글스",
"color": "#FC4E00",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2025/HH.png",
},
"NC": {
"id": "NC",
"full": "NC 다이노스",
"color": "#315288",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2022/NC.png",
},
"키움": {
"id": "WO",
"full": "키움 히어로즈",
"color": "#570514",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/emblem/regular/2022/WO.png",
},
None: {
"id": "NO",
"full": "없음",
"color": "#002063",
"logo": "https://6ptotvmi5753.edge.naverncp.com/KBO_IMAGE/KBOHome/resources/images/common/h2_logo.png",
},
}