The document focuses on data serialization in Python using a Graphical User Interface (GUI). It explains how to save employee data (name, IRD number, hours worked, and hourly rate) using Python's tkinter library for the GUI and the pickle module for serialization. The process involves creating a GUI form for data input, temporarily storing the data as Employee class objects in a list, and then serializing that list into a file.
The above block of code has been discussed in the previous lesson and, therefore, should be familiar to you. It is shown here only for completeness.
The three listings below are part of the GUI form that we only glanced at in the previous lesson. Here we shall look at it in more detail.
In this example data serialisation is in two stages. The first stage is temporarily storing the objects in a list until data input is complete. The second stage is serialising the contents of that list into a file. In listing 1-2 we shall begin with the first stage of the process.
At line 42 the list Salaries[] is initialised. This is where the objects of the class Employee will be stored prior to being serialised.
At line 43 the function saveToList() is activated and the values for the name, ird number, hours and rate are passed to its four parameters.
Line 44 uses those four parameters to create an object of the class Employee This object is then appended to the list Salaries at line 45. This completes the essential part of saveToList() - the rest is tidying up
The contents of the Employee object is printed to the monitor at line 46. This is, strictly speaking, not necessary but it complies with the usability heuristic "visibility of system status".
Lines 47 - 51 initialise the values of the bridging classes.
Saving Data
Listing 1-3
def saveToFile(): with open('Workers.pickle', 'ab') as file: for worker in Salaries: pickle.dump(worker, file) print("Data saved to file")
Listing 1-3 is the second stage of the serialisation process. The function saveToFile() is activated when the button "Save to File" is clicked. The function opens the file Workers.pickle in append binary mode. The file is opened in append mode so that the data is not overwritten each time the function is called.
A for loop in lines in lines 55 - 56 controls serialising the contents of Salaries into the .pickle file. The loop simply iterates over the objects of the list and for each object uses the pickle.dump() method to serialise the current object.
Once all of the objects are serialised the file is closed and line 57 informs the user that saving the data is complete. This is another example of making the system status visible to the user.
Again there is no need to explain the finishing lines of the program.
Summary
The document describes a two-stage data serialization process: first, employee data is collected via a GUI and stored in a list; second, the contents of this list are serialized into a file. The saveToList() function handles data input and temporary storage, while the saveToFile() function performs the serialization using pickle.dump(). The importance of providing user feedback (e.g., confirming when data is saved) is also emphasized.