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
|
#!/usr/bin/env python
from twisted.internet import reactor, defer
from txdbus import client, error
@defer.inlineCallbacks
def main():
try:
cli = yield client.connect(reactor)
yield cli.callRemote( '/AnyValidObjectPath', 'Ping',
interface = 'org.freedesktop.DBus.Peer',
destination = 'org.example' )
print 'Ping Succeeded. org.example is available'
except error.DBusException, e:
print 'Ping Failed. org.example is not available'
reactor.stop()
reactor.callWhenRunning(main)
reactor.run()
|