-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconst.py
More file actions
28 lines (26 loc) · 899 Bytes
/
Copy pathconst.py
File metadata and controls
28 lines (26 loc) · 899 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
class Const:
SPLASH = """
*** * ****** ** **
*** ** * ** ** **** **
** ** ** * ** *** ***** ** *****
** * **** **** ***** *** ** ** ** **
** **** ****** ** ** ** *** ** ** **
*** **** * ** *** ** **** **
***************************
CsvPath Command Line Interface
Try tab completion and menu-by-key.
For help see https://www.csvpath.org
"""
ITALIC = "\033[3m"
BOLD = "\033[1m"
UNBOLD = "\033[22m"
SIDEBAR_COLOR = "\033[36m"
REVERT = "\033[0m"
STOP_HERE = f"{SIDEBAR_COLOR}{ITALIC}... done picking dir{REVERT}"
STOP_HERE2 = "👍 pick this dir"
CANCEL = f"{SIDEBAR_COLOR}{ITALIC}... cancel{REVERT}"
CANCEL2 = "← cancel"
QUIT = "← quit"
NAMED_FILES = "register data"
NAMED_PATHS = "load csvpaths"
ARCHIVE = "access the archive"