https://github.com/esnet/pypond
A python library to manipulate and transmit time-series data.
https://github.com/esnet/pypond
immutable python timeseries
Last synced: 12 months ago
JSON representation
A python library to manipulate and transmit time-series data.
- Host: GitHub
- URL: https://github.com/esnet/pypond
- Owner: esnet
- License: other
- Created: 2016-03-21T18:13:26.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-04-17T22:52:00.000Z (about 1 year ago)
- Last Synced: 2025-07-02T08:09:54.527Z (about 1 year ago)
- Topics: immutable, python, timeseries
- Language: Python
- Homepage:
- Size: 1.54 MB
- Stars: 5
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](http://pypond.readthedocs.io/en/latest/?badge=latest) [](https://travis-ci.org/esnet/pypond) [](https://coveralls.io/github/esnet/pypond?branch=master)
# PyPond - Python Pond timeseries library.
## Overview
PyPond is a Python implementation of the JavaScript [Pond timeseries library](http://software.es.net/pond/). At a very high level, both implementations offer classes and structures to collect, manipulate and transmit timeseries data. Time series transmission is done via a JSON-based wire format.
This implementation is [available on GitHub](https://github.com/esnet/pypond) and the API documentation is available at [software.es.net](http://software.es.net/pypond/) (and alternately on [RTD](http://pypond.readthedocs.io/en/latest/)).
PyPond runs on python 3.3 through 3.10.
## Core Documentation
The [main project site](http://software.es.net/pond/) has extensive documentation on the various structures (Event, TimeRange, TimeSeries, etc) that both implementations use internally. There is no need to duplicate that conceptual documentation here since the python implementation follows the same API and uses the same structures.
The only real difference with pypond is that the method names have been changed to their obvious pythonic corollaries (`obj.toString()` becomes `obj.to_string()`) and any comparison methods named `.is()` in the JavaScript version have been renamed to `.same()` in pypond since `is` is a reserved word in python.
The [tests](https://github.com/esnet/pypond/tree/master/tests) can also be referred to as a fairly complete set of examples as well.