123456789101112131415161718 |
- import os
- from pathlib import Path
- from gchr.gchr import GCHR
- def gchr_local() -> None:
- base_dir = os.getcwd() + "\\..\\GCHR2_Testdaten\\Kunden"
- for path in Path(base_dir).glob("*"):
- if not path.is_dir():
- continue
- print(path.name)
- gchr = GCHR(str(path))
- gchr.export_all_periods()
- if __name__ == "__main__":
- gchr_local()
|