Skip to content

Instantly share code, notes, and snippets.

@markusritschel
Created June 22, 2020 14:03
Show Gist options
  • Save markusritschel/bc47c7fd96b063260cd4da08845f8ed1 to your computer and use it in GitHub Desktop.
Save markusritschel/bc47c7fd96b063260cd4da08845f8ed1 to your computer and use it in GitHub Desktop.
Retrieve the total size of available physical memory
from psutil import virtual_memory
mem = virtual_memory()
print(mem.total) # in bytes
print(mem.total / 1024**3) # in giga bytes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment