-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
62 lines (61 loc) · 2.69 KB
/
constants.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
import os
CHANNEL_IDS = {
"general": os.environ.get("GENERAL_CID"),
"health": os.environ.get("HEALTH_CID"),
"to-triage": os.environ.get("TO-TRIAGE_CID"),
"ps-general": os.environ.get("PS-GENERAL_CID"),
"ps-practice-sites": os.environ.get("PS-PRACTICE-SITES_CID"),
"file-share": os.environ.get("FILE-SHARE_CID"),
"career": os.environ.get("CAREER_CID"),
"articles-blogs": os.environ.get("ARTICLES-BLOGS_CID"),
"videos": os.environ.get("VIDEOS_CID"),
"books": os.environ.get("BOOKS_CID"),
"security": os.environ.get("SECURITY_CID"),
"ui-ux-design": os.environ.get("UI-UX-DESIGN_CID"),
"editing": os.environ.get("EDITING_CID"),
"repos": os.environ.get("REPOS_CID"),
"games": os.environ.get("GAMES_CID"),
"cool-sites": os.environ.get("COOL-SITES_CID"),
"learning-resources": os.environ.get("LEARNING-RESOURCES_CID"),
"html": os.environ.get("HTML_CID"),
"css": os.environ.get("CSS_CID"),
"js": os.environ.get("JS_CID"),
"react": os.environ.get("REACT_CID"),
"flask": os.environ.get("FLASK_CID"),
"typescript": os.environ.get("TYPESCRIPT_CID"),
"web-gpu": os.environ.get("WEB-GPU_CID"),
"python": os.environ.get("PYTHON_CID"),
"c-cpp-asm": os.environ.get("C-CPP-ASM_CID"),
"ruby": os.environ.get("RUBY_CID"),
"go": os.environ.get("GO_CID"),
"others": os.environ.get("OTHERS_CID"),
"devops": os.environ.get("DEVOPS_CID"),
"linux": os.environ.get("LINUX_CID"),
"docker": os.environ.get("DOCKER_CID"),
"kubernetes": os.environ.get("KUBERNETES_CID"),
"git-github": os.environ.get("GIT-GITHUB_CID"),
"vs-code": os.environ.get("VS-CODE_CID"),
"vim-emacs": os.environ.get("VIM-EMACS_CID"),
"db": os.environ.get("DB_CID"),
"system-design": os.environ.get("SYSTEM-DESIGN_CID"),
"auth": os.environ.get("AUTH_CID"),
"api": os.environ.get("API_CID"),
"tools": os.environ.get("TOOLS_CID"),
"network": os.environ.get("NETWORK_CID"),
"oops": os.environ.get("OOPS_CID"),
"math": os.environ.get("MATH_CID"),
"ml-ai": os.environ.get("ML-AI_CID"),
"showcase": os.environ.get("SHOWCASE_CID"),
"discussions": os.environ.get("DISCUSSIONS_CID"),
"memes": os.environ.get("MEMES_CID"),
"youtube": os.environ.get("YOUTUBE_CID"),
"typing": os.environ.get("TYPING_CID"),
"playground": os.environ.get("PLAYGROUND_CID"),
"web-design": os.environ.get("WEB-DESIGN_CID"),
"pop-talks-text": os.environ.get("POP-TALKS-TEXT_CID"),
"solution-dump": os.environ.get("SOLUTION-DUMP_CID"),
"academics": os.environ.get("ACADEMICS_CID"),
"placement-general": os.environ.get("PLACEMENT-GENERAL_CID"),
"resume": os.environ.get("RESUME_CID"),
"dsa": os.environ.get("DSA_CID"),
}