Skip to content

Instantly share code, notes, and snippets.

@romicofre
Created June 28, 2020 00:56
Show Gist options
  • Save romicofre/13d839c998e6cafa948726916f9b99a0 to your computer and use it in GitHub Desktop.
Save romicofre/13d839c998e6cafa948726916f9b99a0 to your computer and use it in GitHub Desktop.
Memory usage in MB
def memory_usage():
"""
:return: memory usage in MB
"""
mem = psutil.Process(os.getpid()).memory_info().rss
return mem / 1024 ** 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment