Metadata-Version: 2.1
Name: owping-parser
Version: 0.2.1
Summary: A program to parse the output of owping
Home-page: https://github.com/mirgleich/owping-parser
Author: mirgleich
Author-email: dev.david@familie-gleich.de
License: GPLv3
Project-URL: Tracker, https://github.com/mirgleich/owping-parser/issues
Project-URL: Source, https://github.com/mirgleich/owping-parser
Keywords: owping network ping
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: System :: Networking
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3
Description-Content-Type: text/x-rst

# owping-parser

This module is just parsing the output of owping from https://github.com/perfsonar/owamp/tree/master/owping

# How to use #

```python
parser = owping.Parser(result)
owping_result =parser.parse_owping()
```

where result is the output string of the owping command

parse_owping is returning a OWPingResult

# OWPingResult #
has a to and a from server for the query:
* to_server / from_server
    * sid
    * first
    * last
    * sent
    * lost
    * duplicates
    * jitter
    * hops
    * delay
        * min
        * median
        * max

