gchr_convert.py 996 B

12345678910111213141516171819202122232425262728
  1. import csv
  2. import xml.etree.ElementTree as ET
  3. from gchr.gchr import GCHR
  4. def convert_to_row(node: list[ET.Element]) -> list[str]:
  5. return [child.text for child in node]
  6. def convert_xml_to_csv(xmlfile: str, csvfile: str) -> bool:
  7. with open(xmlfile) as frh:
  8. record_list = ET.parse(frh).getroot().find("RecordList")
  9. header = [child.tag for child in record_list.find("Record")]
  10. bookings = [GCHR.convert_to_row(node) for node in record_list.findall("Record")]
  11. with open(csvfile, "w") as fwh:
  12. cwh = csv.writer(fwh, delimiter=";")
  13. cwh.writerow(header)
  14. cwh.writerows(bookings)
  15. return True
  16. def convert_csv_to_xml(self, csvfile: str, xmlfile: str) -> None:
  17. self.makes = {"01": "1844"}
  18. self.sites = {"01-01": "1844"}
  19. with open(csvfile, "r", encoding="latin-1") as frh:
  20. csv_reader = csv.DictReader(frh, delimiter=";")
  21. GCHR.export_skr51_xml(csv_reader, self.bookkeep_filter(), 1, list(self.sites.values())[0], xmlfile)