Skip to content
Permalink
71f1240e43
Go to file
 
 
Cannot retrieve contributors at this time
executable file 29 lines (19 sloc) 631 Bytes
#!/usr/bin/python3
import dbus
bus = dbus.SystemBus()
manager = dbus.Interface(bus.get_object('org.ofono', '/'),
'org.ofono.Manager')
modems = manager.GetModems()
for path, properties in modems:
print("[ %s ]" % (path))
if "org.ofono.SimAuthentication" not in properties["Interfaces"]:
continue
simauth = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.SimAuthentication')
apps = simauth.GetApplications()
for path, properties in apps.items():
print(" [ %s ]" % (path))
for key in properties.keys():
val = str(properties[key])
print(" %s = %s" % (key, val))
print('')
You can’t perform that action at this time.