-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathother_functions.py
69 lines (54 loc) · 1.85 KB
/
other_functions.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
63
64
65
66
67
68
69
from time import sleep
import os
import re
from PyQt5.QtWidgets import QMessageBox
from os import system, name
# Function to clear the command prompt after a given amount of time for both Windows and Linux users
def SleepClear(time):
# for windows
if name == 'nt':
sleep(time)
system('cls')
# for mac and linux
else:
sleep(time)
system('clear')
# Function to declare that an error happened
def Error():
print("An Error Occured, Please Try Again Later. ")
# Function To Decorate the output
def Message(string):
print('-' * (len(string) + 4))
print('| ' + string + ' |')
print('-' * (len(string) + 4))
# Function to check if an email address is valid or not
def CheckEmail(email):
regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b'
if(re.fullmatch(regex, email)):
return True
else :
return False
# Function to check if a credit card expiration date is valid or not
def CheckExpirationDate(number):
# Length of given expiration date should be 5 characters
# the first two and last two characters should be integers
# the month's number should be between 01 and 12
# the given expiration date should have a / in the middle
if (len(number) != 5) or (number[0:2].isdigit() == False) or (number[3::].isdigit() == False) or (number[2] != '/') or (int(number[0:2]) > 12) or (int(number[0:2]) <= 0):
return False
else :
return True
# Function to show a Warning Popup Message
def ShowWarningPopup(text):
msg = QMessageBox()
msg.setWindowTitle("Error")
msg.setText(text)
msg.setIcon(QMessageBox.Warning)
msg.exec_()
# Function to show a Warning Popup Message
def ShowInformationPopup(title, text):
msg = QMessageBox()
msg.setWindowTitle(title)
msg.setText(text)
msg.setIcon(QMessageBox.Information)
msg.exec_()