-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_book.py
100 lines (73 loc) · 2.93 KB
/
service_book.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import json
import datetime
# A simple program to register service notes in a file (service.json, which has to be in the same folder as this .py file)
# First, showing the last entry, if the file exists
try:
if "service.json":
file = open("service.json", "r", encoding="utf=8")
content = file.read()
file.close()
service_entries = json.loads(content)
entries_sorted = sorted(service_entries, key=lambda x: (x["time"]))
print(f"Latest entry:")
print("Date:", entries_sorted[-1]['time'])
print("Name:", entries_sorted[-1]['name'])
print("Service code:", entries_sorted[-1]['code'])
print("Message:", entries_sorted[-1]['comment'], "\n")
except:
print("No entries yet.\n")
# Now, user can choose to read, write or quit:
while True:
action = input("Do you want to add a new note (w) or read all the existing ones (r)? "
"Entering q stops the program.")
if action == "r":
try:
file_handle = open("service.json", "r", encoding="utf-8")
content = file_handle.read()
file_handle.close()
entries = json.loads(content)
print("All the service notes:")
for entry in entries_sorted:
print(f"Pvm: {entry['time']}")
print(f"Hlö: {entry['name']}")
print(f"Tilannekoodi: {entry['code']}")
print(f"Viesti: {entry['comment']}\n")
except FileNotFoundError:
print("File not found. Program stopped.")
break
elif action == "w":
try:
file_handle = open("service.json", "r", encoding="utf-8")
content = file_handle.read()
file_handle.close()
service_entries = json.loads(content)
print("New entry:\n")
name = input("Name: ")
code = int(input("Service code: "))
comment = input("Comment: ")
time = datetime.datetime.now().strftime("%d.%m.%Y klo %H.%M.")
# Saving the message as a new entry:
new_entry = {
"name": name,
"code": code,
"comment": comment,
"time": time
}
# Adding the above entry to the collection:
service_entries.append(new_entry)
# Converting service_entries to json format:
json_data = json.dumps(service_entries, indent=2)
# Adding it to service.json file:
file = open("service.json", "w")
file.write(json_data)
file.close()
# Finishing the action:
print("Your note has been saved.")
except FileNotFoundError or NameError:
print("File not found. Program stopped.")
break
elif action == "q":
print("Program stopped.")
break
else:
print("Please read the instructions to proceed: \n")