-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssignment06.py
205 lines (174 loc) · 8.48 KB
/
Assignment06.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# ------------------------------------------------------------------------ #
# Title: Assignment 06
# Description: Working with functions in a class,
# When the program starts, load each "row" of data
# in "ToDoToDoList.txt" into a python Dictionary.
# Add the each dictionary "row" to a python list "table"
# ChangeLog (Who,When,What):
# RRoot,1.1.2030,Created started script
# TWang,10.Nov.2019,Modified script to complete Assignment 6
# <Your Name>,<Today's Date>,Modified code to complete assignment 6
# ------------------------------------------------------------------------ #
# Data -------------------------------------------------------------------- #
# Declare variables and constants
strFileName = "ToDoFile.txt" # The name of the data file
objFile = None # An object that represents a file
strData = "" # A row of text data from the file
dicRow = {} # A row of data separated into elements of a dictionary {Task,Priority}
lstTable = [] # A dictionary that acts as a 'table' of rows
strChoice = "" # Capture the user option selection
# Data -------------------------------------------------------------------- #
open(strFileName, "a")
# Processing ------------------------------------------------------------- #
class FileProcessor:
""" Processing the data to and from a text file """
@staticmethod
def ReadFileDataToList(file_name, list_of_rows):
"""
Desc - Reads data from a file into a list of dictionary rows
:param file_name: (string) with name of file:
:param list_of_rows: (list) you want filled with file data:
:return: (list) of dictionary rows
"""
file = open(strFileName, "r")
for line in file:
data = line.split(",")
row = {"Task": data[0].strip(), "Priority": data[1].strip()}
list_of_rows.append(row)
file.close()
return list_of_rows
@staticmethod
def SaveDataToFile(list_of_rows):
if ("y" == str(input("Save this data to file? (y/n) - ")).strip().lower()): # Double-check with user
objFile = open(strFileName, "w")
for dicRow in lstTable: # Write each row of data to the file
objFile.write(dicRow["Task"] + "," + dicRow["Priority"] + "\n")
objFile.close()
input("Data saved to file! Press the [Enter] key to return to menu.")
else: # Let the user know the data was not saved
input("New data was NOT Saved, but previous data still exists! Press the [Enter] key to return to menu.")
return list_of_rows
@staticmethod
def ReloadDataFromFile(list_of_rows):
print("Warning: This will replace all unsaved changes. Data loss may occur!") # Warn user of data loss
strYesOrNo = input("Reload file data without saving? [y/n] - ") # Double-check with user
if (strYesOrNo.lower() == 'y'):
lstTable.clear() # Added to fix bug 1.1.2030
FileProcessor.ReadFileDataToList(strFileName, lstTable) # Replace the current list data with file data
else:
input("File data was NOT reloaded! Press the [Enter] key to return to menu.")
return list_of_rows
@staticmethod
def ExitfromFile():
print("Exit Program")
# Processing ------------------------------------------------------------- #
# Presentation (Input/Output) -------------------------------------------- #
class IO:
""" A class for perform Input and Output """
@staticmethod
def OutputMenuItems():
""" Display a menu of choices to the user
:return: nothing
"""
print('''
Menu of Options
1) Show current data
2) Add a new item.
3) Remove an existing item.
4) Save Data to File
5) Reload Data from File
6) Exit Program
''')
print() # Add an extra line for looks
@staticmethod
def InputMenuChoice():
""" Gets the menu choice from a user
:return: string
"""
choice = str(input("Which option would you like to perform? [1 to 6] - ")).strip()
print() # Add an extra line for looks
return choice
@staticmethod
def ShowCurrentItemsInList(list_of_rows):
""" Shows the current items in the list of dictionaries rows
:param list_of_rows: (list) of rows you want to display
:return: nothing
"""
print("******* The current items ToDo are: *******")
for row in list_of_rows:
print(row["Task"] + " (" + row["Priority"] + ")")
print("*******************************************")
print() # Add an extra line for looks
return list_of_rows
@staticmethod
def InputNewItemToList(list_of_rows):
strTask = str(input("What task would you like to add? - ")).strip() # Get task from user
strPriority = str(input("What is the priority? [high|low] - ")).strip() # Get priority from user
print() # Add an extra line for looks
# Step 3.2.b Add item to the List/Table
dicRow = {"Task": strTask, "Priority": strPriority} # Create a new dictionary row
lstTable.append(dicRow) # Add the new row to the list/table
return list_of_rows
@staticmethod
def RemoveItemFromList(list_of_rows):
"""Remove an exiting item from a user
:return: string
"""
strKeyToRemove = input("Which TASK would you like removed? - ") # get task user wants deleted
blnItemRemoved = False # Create a boolean Flag for loop
intRowNumber = 0 # Create a counter to identify the current dictionary row in the loop
# Step 3.3.b - Search though the table or rows for a match to the user's input
while (intRowNumber < len(lstTable)):
if (strKeyToRemove == str(list(dict(lstTable[intRowNumber]).values())[0])): # Search current row column 0
del lstTable[intRowNumber] # Delete the row if a match is found
blnItemRemoved = True # Set the flag so the loop stops
intRowNumber += 1 # Increase counter to get next row
# Step 3.3.c - Update user on the status of the search
if (blnItemRemoved == True):
print("The task was removed.")
else:
print("I'm sorry, but I could not find that task.")
print() # Add an extra line for looks
return list_of_rows
# Presentation (Input/Output) -------------------------------------------- #
# Main Body of Script ---------------------------------------------------- #
# Step 1 - When the program starts, Load data from ToDoFile.txt.#
FileProcessor.ReadFileDataToList(strFileName, lstTable) # read file data
# Step 2 - Display a menu of choices to the user
while(True):
IO.OutputMenuItems() # Shows menu
strChoice = IO.InputMenuChoice() # Get menu option
# Step 3 - Process user's menu choice
# Step 3.1 Show current data
if (strChoice.strip() == '1'):
IO.ShowCurrentItemsInList(lstTable) # Show current data in the list/table
continue # to show the menu
# Step 3.2 - Add a new item to the list/Table
elif(strChoice.strip() == '2'):
# Step 3.2.a - Ask user for new task and priority
IO.InputNewItemToList(lstTable) # Calls defination
IO.ShowCurrentItemsInList(lstTable) # Show current data in the list/table
continue # to show the menu
# Step 3.3 - Remove a new item to the list/Table
elif(strChoice == '3'):
# Step 3.3.a - Ask user for item and prepare searching while loop
IO.RemoveItemFromList(lstTable)
#Step 3.3.d - Show the current items in the table
IO.ShowCurrentItemsInList(lstTable) # Show current data in the list/table
continue # to show the menu
# Step 3.4 - Save tasks to the ToDoFile.txt file
elif(strChoice == '4'):
#Step 3.4.a - Show the current items in the table
IO.ShowCurrentItemsInList(lstTable) # Show current data in the list/table
#Step 3.4.b - Ask if user if they want save that data
FileProcessor.SaveDataToFile(lstTable) # Save file
continue # to show the menu
elif (strChoice == '5'):
FileProcessor.ReloadDataFromFile(lstTable) # Reload Data from File
IO.ShowCurrentItemsInList(lstTable) # Show current data in the list/table
continue # to show the menu
# Step 3.6 - Exit the program
elif (strChoice == '6'):
FileProcessor.ExitfromFile()
break # and Exit
# Main Body of Script --------------------------------------------66--------