blob: 655e50a5d9d8a38a5ae09b9e83e4e3406556a64a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/usr/bin/python
import dbus
bus = dbus.SystemBus()
manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
"org.moblin.connman.Manager")
properties = manager.GetProperties()
for path in properties["Connections"]:
connection = dbus.Interface(bus.get_object("org.moblin.connman", path),
"org.moblin.connman.Connection")
properties = connection.GetProperties()
print "[ %s ]" % (path)
for key in properties.keys():
if key in ["Strength", "Priority"]:
val = int(properties[key])
else:
val = str(properties[key])
print " %s = %s" % (key, val)
print
|