In this exercise you will read in a delimited data file as a list of records. Each record will be an instance of InventoryItem. The format of the delimited file is unusual, but can be handled by the Python csv module with appropriate configuration.
For example, the first few lines of data/Inventory.txt contain:
Name|Price|Quantity
/Wankle rotary engine/|555.55|527
/Sousaphone w%/ stand/|333.33|123
Feather Duster|22.22|900
/Area 51 metal fragment/|9999.99|
Notice the delimiter used and the manner of escaping a delimiter within a field. Blank lines should be ignored. Your result should match the datatypes annotated in the Data Class.