Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gleichda/owping-parser
Parsing One Way Ping to a dict in Python
https://github.com/gleichda/owping-parser
owamp owping parsing python
Last synced: about 1 month ago
JSON representation
Parsing One Way Ping to a dict in Python
- Host: GitHub
- URL: https://github.com/gleichda/owping-parser
- Owner: gleichda
- License: gpl-3.0
- Created: 2018-03-22T13:13:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-05T11:33:26.000Z (almost 7 years ago)
- Last Synced: 2024-08-10T04:26:30.549Z (5 months ago)
- Topics: owamp, owping, parsing, python
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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