-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.py
executable file
·52 lines (47 loc) · 1.01 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
"""
File containing constants useds in the rest of
the program
"""
import config
URL_TELEGRAM = "https://api.telegram.org/bot{}/".format(config.TOKEN)
URL_GITHUB = "https://api.github.com/repos/TecProg-20181/T--botcultural/issues"
TODO = 'TODO'
DOING = 'DOING'
DONE = 'DONE'
HELP = """
/new NOME
/newIssue NOME
/todo ID...
/doing ID...
/done ID...
/delete ID...
/list
/listP
/listIssues
/rename ID NOME
/renameIssue ID NOME
/dependson ID ID...
/duplicate ID
/priority PRIORITY{low, medium, high} ID...
/duedate DATE{YYYY-MM-DD} ID...
/help
"""
# ICONS
NEW_ICON = '\U0001F195'
DOING_ICON = '\U000023FA'
DONE_ICON = '\U00002611'
TASK_ICON = '\U0001F4CB'
STATUS_ICON = '\U0001F4DD'
HI_PRIORITY_ICON = '\U0001F534'
MED_PRIORITY_ICON = '\U0001F535'
LOW_PRIORITY_ICON = '\U000026AA'
PRIORITY = {
'high':'\U0001F534',
'medium':'\U0001F535',
'low':'\U000026AA'
}
CONFUSED_EMOJI = '\U0001F615'
THINKING_EMOJI = '\U0001F914'
WRITING_EMOJI = '\U0000270D'
ZANY_EMOJI = '\U0001F62C'
MONOCLE_EMOJI = '\U0001F9D0'