gcstruct_profiler.py 265 B

1234567891011121314
  1. import cProfile
  2. from gcstruct import gcstruct_uebersetzung
  3. def gcstruct_profiler():
  4. gcstruct_uebersetzung("C:\\GlobalCube\\Tasks\\scripts")
  5. if __name__ == "__main__":
  6. cProfile.run(
  7. "gcstruct_profiler()",
  8. "gcstruct_profiler.prof",
  9. )