In order to avoid the exception, something like below must be implemented
Line 98 in fred.py should be corrected like this
# info = pd.Series(root.getchildren()[0].attrib)
info = pd.Series(root.findall('.//series')[0].attrib)
the same with line 135
# for child in root.getchildren():
for child in root:
Best regards