Skip to content

Instantly share code, notes, and snippets.

@virtualdvid
Created January 15, 2019 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save virtualdvid/640589a834024804bd14ec066ba501fd to your computer and use it in GitHub Desktop.
Save virtualdvid/640589a834024804bd14ec066ba501fd to your computer and use it in GitHub Desktop.
memory usage
MB = (1024 * 1024)
GB = (MB * 1024)
start_mem = psutil.virtual_memory().used
print("Start Memory: %.2f GB" % (start_mem / GB))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment