-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyappdevkit.py
79 lines (69 loc) · 3.3 KB
/
pyappdevkit.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
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/python3
""" Copyright© 2023-2025 LinuxUsersLinuxMint
PyAppDevKit Tüm Hakları GPL(Genel Kamu Lisansı) altında korunmaktadır.
PyAppDevKit All Rights Reserved under the GPL(General Public License).
Bu Yazılımın Bir Kopyası GitHub da yayınlanmaktadır Görüntülemek için: https://github.com/LinuxUsersLinuxMint/PyAppDevKit
A Copy of This Software is published on GitHub To view: https://github.com/LinuxUsersLinuxMint/PyAppDevKit"""
def time(number):
while number > 0:
number -= 1
for _ in range(100000000):
pass
def file(file_name,file_mode,file_write):
create_file = open(file_name, file_mode)
if file_mode == "w" or file_mode == "a":
create_file.write("{0}\n". format(file_write))
elif file_mode == "r":
print(create_file.read())
def error_msg(error_dialog,error_code,support_link):
print(error_dialog,error_code,support_link)
def exit_program_dialog_time(exit_dialog_msg,userTime):
print(exit_dialog_msg)
time(userTime)
exit()
def exit_program_time(userTime):
time(userTime)
exit()
def exit_program_dialog(exit_dialog_msg):
print(exit_dialog_msg)
exit()
""" Example Dialog (ExitSelectDialog): "Select the method to exit the program (0: Dialogue and Time entry, 1: Time entry only, 2: Dialogue entry only, 3: Normal exit (old style)): "
Example Dialog (userTimeDialog): "After how many seconds should the program be closed?: "
Example Dialog (exitDialog): "Exit program..."
Example Dialog (errormsgDialog): "Invalid Command!" """
def all_exit(ExitSelectDialog,userTimeDialog,exitDialog,errormsgDialog):
exit_select = int(input(ExitSelectDialog))
if exit_select == 0:
userTime = int(input(userTimeDialog))
exit_program_dialog_time(exitDialog, userTime)
elif exit_select == 1:
userTime = int(input(userTimeDialog))
exit_program_time(userTime)
elif exit_select == 2:
exit_program_dialog(exitDialog)
elif exit_select == 3:
exit()
else:
print(errormsgDialog)
def app_info(dialog_one,dialog_one_t,dialog_two,dialog_two_t,dialog_three,dialog_three_t,dialog_four,dialog_four_t,dialog_five,dialog_five_t,dialog_six,dialog_six_t,dialog_seven,dialog_seven_t,dialog_eigth,dialog_eight_t,dialog_nine,dialog_nine_t,dialog_ten,dialog_ten_t):
print("{0} {1}". format(dialog_one,dialog_one_t))
print("{0} {1}". format(dialog_two,dialog_two_t))
print("{0} {1}". format(dialog_three,dialog_three_t))
print("{0} {1}". format(dialog_four,dialog_four_t))
print("{0} {1}". format(dialog_five,dialog_five_t))
print("{0} {1}". format(dialog_six,dialog_six_t))
print("{0} {1}". format(dialog_seven,dialog_seven_t))
print("{0} {1}". format(dialog_eigth,dialog_eight_t))
print("{0} {1}". format(dialog_nine,dialog_nine_t))
print("{0} {1}". format(dialog_ten,dialog_ten_t))
def program_welcome_msg(welcome_msg,cfg,cfg_,appname,libname,websitelink):
print(welcome_msg)
if cfg == 1:
print(websitelink)
elif cfg == 0:
if cfg_ == "lib":
app_info("Library Name: ",libname,"","","","","","","","","","","","","","","","","","")
elif cfg_ == "app":
app_info("Program Name: ",appname,"","","","","","","","","","","","","","","","","","")
else:
error_msg("Invalid definition!","","")