summaryrefslogtreecommitdiff
path: root/examples/ping.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-03-24 09:36:35 -0400
committerLance Stout <lancestout@gmail.com>2011-03-24 09:36:35 -0400
commitbf2f2782b7b64be97948f56e21d55b969072c4dc (patch)
tree45001e4822e5dc654de2658ee88c73966e907ef1 /examples/ping.py
parent694673b9bdc108ae109efd4dafa8893a22952b94 (diff)
parenta3d111be12144d9dea80165d84cd8168714d3d54 (diff)
downloadslixmpp-bf2f2782b7b64be97948f56e21d55b969072c4dc.tar.gz
slixmpp-bf2f2782b7b64be97948f56e21d55b969072c4dc.tar.bz2
slixmpp-bf2f2782b7b64be97948f56e21d55b969072c4dc.tar.xz
slixmpp-bf2f2782b7b64be97948f56e21d55b969072c4dc.zip
Merge branch 'develop' into stream_features
Diffstat (limited to 'examples/ping.py')
-rwxr-xr-xexamples/ping.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/examples/ping.py b/examples/ping.py
index 70066e3c..ae030c0f 100755
--- a/examples/ping.py
+++ b/examples/ping.py
@@ -12,6 +12,7 @@
import sys
import logging
import time
+import getpass
from optparse import OptionParser
import sleekxmpp
@@ -58,7 +59,8 @@ class PingTest(sleekxmpp.ClientXMPP):
event does not provide any additional
data.
"""
- self.sendPresence()
+ self.send_presence()
+ self.get_roster()
result = self['xep_0199'].send_ping(self.pingjid,
timeout=10,
errorfalse=True)
@@ -102,9 +104,10 @@ if __name__ == '__main__':
logging.basicConfig(level=opts.loglevel,
format='%(levelname)-8s %(message)s')
- if None in [opts.jid, opts.password]:
- optp.print_help()
- sys.exit(1)
+ if opts.jid is None:
+ opts.jid = raw_input("Username: ")
+ if opts.password is None:
+ opts.password = getpass.getpass("Password: ")
# Setup the PingTest and register plugins. Note that while plugins may
# have interdependencies, the order in which you register them does