| 123456789101112131415161718 | import osfrom pathlib import Pathfrom gchr.gchr import GCHRdef 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()
 |