gcstruct_profiler.py 264 B

12345678910111213
  1. from gcstruct import gcstruct_uebersetzung
  2. import cProfile
  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. )