Skip to main content

pingparsing is a python library of parsing ping command output.

Project description

pingparsing

https://badge.fury.io/py/pingparsing.svg https://img.shields.io/pypi/pyversions/pingparsing.svg https://img.shields.io/travis/thombashi/pingparsing/master.svg?label=Linux https://img.shields.io/appveyor/ci/thombashi/pingparsing/master.svg?label=Windows

Summary

pingparsing is a python library of parsing ping command output.

Usage

Execute ping and parse

PingTransmitter class can execute ping command and obtain the ping output as a string.

Sample code

https://github.com/thombashi/pingparsing/blob/master/examples/ping_sample.py

Sample output: Debian 8

./ping_sample.py -d 192.168.0.1
# returncode ---
0

# properties ---
packet_transmit: 10 packets
packet_receive: 10 packets
packet_loss: 0.0 %
rtt_min: 0.445
rtt_avg: 1.069
rtt_max: 4.854
rtt_mdev: 1.312

# asdict ---
{
    "packet_loss": 0.0,
    "packet_receive": 10,
    "packet_transmit": 10,
    "rtt_min": 0.445,
    "rtt_max": 4.854,
    "rtt_mdev": 1.312,
    "rtt_avg": 1.069
}

Example execution result: Windows 10

>ping_sample.py -d google.com
# returncode ---
0

# properties ---
packet_transmit: 10 packets
packet_receive: 10 packets
packet_loss: 0.0 %
rtt_min: 30.0
rtt_avg: 37.0
rtt_max: 58.0
rtt_mdev: None

# asdict ---
{
    "rtt_avg": 37.0,
    "rtt_max": 58.0,
    "packet_loss": 0.0,
    "packet_transmit": 10,
    "rtt_min": 30.0,
    "rtt_mdev": null,
    "packet_receive": 10
}

Note: rtt_mdev not available with Windows

Parsing ping command output

Sample code

https://github.com/thombashi/pingparsing/blob/master/examples/parse_sample.py

Example: Debian 8

Input
# LC_ALL=C ping google.com -q -c 60 > ping.txt
# cat ping.txt
PING google.com (216.58.196.238) 56(84) bytes of data.

--- google.com ping statistics ---
60 packets transmitted, 60 received, 0% packet loss, time 59153ms
rtt min/avg/max/mdev = 61.425/99.731/212.597/27.566 ms
Output
./parse_sample.py -f ping.txt
# properties ---
packet_transmit: 60
packet_receive: 60
packet_loss: 0.0
rtt_min: 61.425
rtt_avg: 99.731
rtt_max: 212.597
rtt_mdev: 27.566

# asdict ---
{
    "rtt_avg": 99.731,
    "packet_transmit": 60,
    "rtt_max": 212.597,
    "packet_loss": 0.0,
    "rtt_min": 61.425,
    "rtt_mdev": 27.566,
    "packet_receive": 60
}

Example: Windows 10

Input
>ping google.com -n 10 > ping_win.txt

>type ping_win.txt

Pinging google.com [216.58.196.238] with 32 bytes of data:
Reply from 216.58.196.238: bytes=32 time=87ms TTL=51
Reply from 216.58.196.238: bytes=32 time=97ms TTL=51
Reply from 216.58.196.238: bytes=32 time=56ms TTL=51
Reply from 216.58.196.238: bytes=32 time=95ms TTL=51
Reply from 216.58.196.238: bytes=32 time=194ms TTL=51
Reply from 216.58.196.238: bytes=32 time=98ms TTL=51
Reply from 216.58.196.238: bytes=32 time=93ms TTL=51
Reply from 216.58.196.238: bytes=32 time=96ms TTL=51
Reply from 216.58.196.238: bytes=32 time=96ms TTL=51
Reply from 216.58.196.238: bytes=32 time=165ms TTL=51

Ping statistics for 216.58.196.238:
    Packets: Sent = 10, Received = 10, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 56ms, Maximum = 194ms, Average = 107ms
Output
parse_sample.py -f ping_win.txt
# properties ---
packet_transmit: 10
packet_receive: 10
packet_loss: 0.0
rtt_min: 56.0
rtt_avg: 107.0
rtt_max: 194.0
rtt_mdev: None

# asdict ---
{
    "packet_loss": 0.0,
    "packet_transmit": 10,
    "rtt_min": 56.0,
    "rtt_avg": 107.0,
    "packet_receive": 10,
    "rtt_max": 194.0,
    "rtt_mdev": null
}

Installation

pip install pingparsing

Dependencies

Python 2.7+ or 3.3+

Test dependencies

Tested Environment

OS

ping version

Debian 8.6

iputils-ping 20121221-5+b2

Fedora 24

iputils-20160308-3.fc24.x86_64

Windows 10

-

Premise

This library expects locale setup to English. Parsing the ping command output with any other locale may fail. This is because the output of the ping command is changed depending on the locale setting.

Documentation

http://pingparsing.rtfd.io/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pingparsing-0.5.0.tar.gz (14.8 kB view hashes)

Uploaded Source

Built Distribution

pingparsing-0.5.0-py2.py3-none-any.whl (12.5 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page