Skip to content

Instantly share code, notes, and snippets.

@CrimsonScythe
Created January 8, 2023 15:37
Show Gist options
  • Save CrimsonScythe/87330c9003fd5faf6c2bc41c420a4e7e to your computer and use it in GitHub Desktop.
Save CrimsonScythe/87330c9003fd5faf6c2bc41c420a4e7e to your computer and use it in GitHub Desktop.
profiler = cProfile.Profile()
profiler.enable()
main()
profiler.disable()
stats = pstats.Stats(profiler).sort_stats('tottime')
stats.print_stats()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment