-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
59 lines (38 loc) · 933 Bytes
/
utils.py
File metadata and controls
59 lines (38 loc) · 933 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
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
"""
utils.py
This module provides utility functions to improve app functionality
"""
import time
import os
import platform
from datetime import datetime
def delay(n=6):
"""
Artificial delay simulator.
Args:
n: The number of dots that are displayed.
Prints:
Prints a series of dots in an interval of half a second.
"""
for _ in range(n):
print(".", end="", flush=True)
time.sleep(0.5)
print("")
def get_current_date():
"""Returns the current date"""
date = datetime.now().strftime("%d-%m-%Y")
return date
def gen_id(num):
num = f"{'0'*(3-len(str(num)))}{num}"
return num
def clear_screen(n=0.8):
"""
Clear the terminal
Args:
n: The number of seconds before the screen is cleared
"""
time.sleep(n)
if platform.system() == "Windows":
os.system("cls")
else:
os.system("clear")