-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger.py
More file actions
66 lines (60 loc) · 1.93 KB
/
Copy pathlogger.py
File metadata and controls
66 lines (60 loc) · 1.93 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
import typer
def console_start():
"""/"""
# request = console.input("")
# spliter = request.split(" ")
# if prefix in spliter[0]:
# run = True
# command = spliter[0].replace(prefix,"")
# args = int(len(spliter) - 1)
# spliter.pop(0)
# if args == 0:
# for i in self.command_start.ZeroArgs:
# if i["func_name"] == command:
# run = False
# try:
# i["func"]()
# except:
# pass
# if run == True:
# print(f"Команда не найдена")
# elif args == 1:
# def StartLog():
# console.print(
# "[bold green]Hello. Thank You for using PyWIN Core [/] [red]II[/]",
# justify="center",
# )
# console.print(
# "[blue bold] System need time to connect dependencies and make the first start[/]",
# justify="center",
# )
# console.print(
# "// Please wait... , [red]** don't turn off PyWIN Core **[/] ", justify="center"
# )
# for 2.0 update
# deployer, builder GDPS server. need to fast
# def warning(message):
# # if config.logger_warning:
# console.print(
# f"[bold yellow][WARNING][/bold yellow] - {formatted_date()} / {message}",
# )
#
#
# def info(message):
# # if config.logger_info:
# console.print(
# f"[bold green][INFO][/bold green] - {formatted_date()} / {message}",
# )
#
#
# def error(message):
# # if config.logger_error:
# console.print(
# f"[bold red][ERROR][/ bold red] - {formatted_date()} / {message}",
# )
#
#
# def alert(message, plugin_name):
# console.print(
# f"[bold red]{plugin_name}[/ bold red] - {formatted_date()} / {message}",
# )