vote up 2 vote down star
3

From within a python app, 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.

flag
Possible duplicates: stackoverflow.com/questions/466684/… and stackoverflow.com/questions/276052/… – John Fouhy Jul 30 at 4:18
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 at 13:33

3 Answers

vote up 6 vote down check

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|flag
vote up 3 vote down

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|flag
That's what I figured... but how would I accomplish it on each of the major OSes? – Algorias Jul 30 at 4:06
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 at 4:51
vote up 3 vote down

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

wx.GetFreeMemory()
link|flag

Your Answer

Get an OpenID
or

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