Battery and Signal:
#Copyright (c) 2008 Pankaj Nathani
#Battery and signal
import sysinfo
print "Battery level: "+unicode(sysinfo.battery())
print "Signal strength: "+unicode(sysinfo.signal_bars())
#Both values are between 0 and 7
Free RAM and Free space:
#Copyright (c) 2008 Pankaj Nathani
#Free RAM and free space
import sysinfo
print sysinfo.free_ram()
print sysinfo.free_drivespace()['C:'] #Or E: for memory card
IMEI and firmware:
#Copyright (c) 2008 Pankaj Nathani
#IMEI and firmware version
import sysinfo
print "IMEI:"
print sysinfo.imei()
print ""
print "Firmware version:"
print sysinfo.sw_version()
The size of the phone's display in pixels:
#Copyright (c) 2008 Pankaj Nathani
#The size of the phone's display in pixels
import sysinfo
print "The display is "+str(sysinfo.display_pixels()[0])+"X"+str(sysinfo.display_pixels()[1])
Seeing which profile is currently active:
#Copyright (c) 2008 Pankaj Nathani
#Seeing which profile is currently active
import sysinfo
print sysinfo.active_profile()