up vote 4 down vote favorite
2
share [g+] share [fb]

From within a Python application, how can I get the total amount of RAM of the system and how much of it is currently free, in a cross-platform way?

Ideally, the amount of free RAM should consider only physical memory that can actually be allocated to the Python process.

link|improve this question
Total RAM and Currently Free aren't cross platform concepts. Windows and GNU/Linux are different operating systems. Which one do you want? The other will be different. – S.Lott Jul 30 '09 at 13:33
feedback

3 Answers

up vote 7 down vote accepted

Have you tried SIGAR - System Information Gatherer And Reporter? After install

import os, sigar

sg = sigar.open()
mem = sg.mem()
sg.close() 
print mem.total() / 1024, mem.free() / 1024

Hope this helps

link|improve this answer
feedback

You can't do this with just the standard Python library, although there might be some third party package that does it. Barring that, you can use the os package to determine which operating system you're on and use that information to acquire the info you want for that system (and encapsulate that into a single cross-platform function).

link|improve this answer
That's what I figured... but how would I accomplish it on each of the major OSes? – Algorias Jul 30 '09 at 4:06
1  
Well, as sunqiang posted, you could try SIGAR (not sure what other dependencies it might have, if any). On linux, you can get memory info from /proc/meminfo, and on other unices you can get it from running vmstat. On windows you'll probably have to call some win32 API (which you can do with ctypes, or with the Python win32 package). – Nick Bastin Jul 30 '09 at 4:51
feedback

For the free memory part, there is a function in the wx library:

wx.GetFreeMemory()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.