View Single Post
  #25  
Old 2010-07-03, 21:19
tibrisch tibrisch is offline
 
Join Date: Jun 2010
Posts: 2
Thanks!: 0
Thanked 0 Times in 0 Posts
Default Re: read cellID from N900 using python?

Not sure if anyone cares... but i got cell_info with python like this:

Code:
import dbus

bus = dbus.SystemBus()
proxy = bus.get_object("com.nokia.phone.net","/com/nokia/phone/net",False)

cell_info = proxy.get_registration_status(dbus_interface="Phone.Net")

print cell_info
Reply With Quote