python-ping icon indicating copy to clipboard operation
python-ping copied to clipboard

Pure Python version of ICMP ping

Results 10 python-ping issues
Sort by recently updated
recently updated
newest added

Made a large series of changes listed in the text document. All changes made were to add support for python3+.

hi, I noticed that the packets sent in pyping are way too big. After some investigation I found out the padding is 4x larger than expected. It looks like the...

we can't run in windows D:\Program Files\Python3>python ping_new1.py ping_new1.py:168: DeprecationWarning: time.clock has been deprecated in Python 3.3 and will be removed from Python 3.8: use time.perf_counter or time.process_time instead data...

make a flag in the header packet and then received data by select.select, we can judge the data whether it's the right one.

Was this program made to run on python 2.7 or 3? There's some syntax problem going on and I have no idea if this is because of the version or...

Hi @samuel I would like to use this package to monitor some interfaces using ICMP. A possible scenario is: a batch of 15 pings executed every 3 seconds (3 seconds...

it was removed today from some reason

removed ord() and *2/2 in checksum(), since python3 no need these and give the same result as python2 print x -> print(x) replacing % x by {}.format() small modifies on...

added python 3 support for exceptions and print() changed xrange() to python 3 range()