You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code examples provided in README.md for Using MultiPing are not compatible with Python 3, as they use Python 2 style print statements.
The receive() function returns a tuple containing a results dictionary (addresses and response times) as well as a list of addresses that did not respond in time. The results may be processed like this:
...
for addr, rtt in responses.items():
print "%s responded in %f seconds" % (addr, rtt)
The text was updated successfully, but these errors were encountered:
The code examples provided in README.md for Using MultiPing are not compatible with Python 3, as they use Python 2 style print statements.
The text was updated successfully, but these errors were encountered: