Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/momsfriendlyrobotcompany/the_collector
Python library to help collect and store data
https://github.com/momsfriendlyrobotcompany/the_collector
data-collection msgpack python robotics
Last synced: about 1 month ago
JSON representation
Python library to help collect and store data
- Host: GitHub
- URL: https://github.com/momsfriendlyrobotcompany/the_collector
- Owner: MomsFriendlyRobotCompany
- License: mit
- Created: 2017-10-05T00:55:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-26T16:58:15.000Z (about 1 year ago)
- Last Synced: 2024-12-07T22:06:57.882Z (about 2 months ago)
- Topics: data-collection, msgpack, python, robotics
- Language: Python
- Homepage: https://pypi.org/project/the-collector/
- Size: 11.8 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
[![image](https://raw.githubusercontent.com/MomsFriendlyRobotCompany/the-collector/master/pics/header.jpg)](https://github.com/MomsFriendlyRobotCompany/the-collector)
# The Collector
[![.github/workflows/python.yaml](https://github.com/MomsFriendlyRobotCompany/the_collector/actions/workflows/python.yaml/badge.svg)](https://github.com/MomsFriendlyRobotCompany/the_collector/actions/workflows/python.yaml)
![GitHub](https://img.shields.io/github/license/MomsFriendlyRobotCompany/the-collector)
[![Latest Version](https://img.shields.io/pypi/v/the-collector.svg)](https://pypi.python.org/pypi/the-collector/)
[![image](https://img.shields.io/pypi/pyversions/the-collector.svg)](https://pypi.python.org/pypi/the-collector)
[![image](https://img.shields.io/pypi/format/the-collector.svg)](https://pypi.python.org/pypi/the-collector)
![PyPI - Downloads](https://img.shields.io/pypi/dm/opencv_camera?color=aqua)**This is still under heavy development**
This was written for a class I taught on robotics. It is meant to be simple and
teach the students some things. There are probably better solutions out there,
but I like this.Read and write data files using pickle, json, gziped
json, and csv. Method is determined by filename extension.
Valid extensions are:- .pkl: pickle
- .json: json
- .gzip: json compressed with gzip [default]
- .csv: comma separated values## Usage
See the [notebook](docs/notebooks/the_collector.ipynb) for examples of how to use
it.```python
from collector import Collectorc = Collector()
c.timestamp = False
d = np.array([[1,2,3],[4.,5.,6.]])
i = {"imu":
{
"gyro_range": 3000,
"accel_range": 2
}
}c.write("test_test_now.csv",d)
dd = c.read("test_test_now.csv")c.write("test_test_now.json",d,i)
dd = c.read("test_test_now.json")fname = c.write("test_test_now.pkl",d,i)
dd = c.read(fname)c.timestamp = True
fname = c.write("data/test_test_now.pkl",d,i)
dd = c.read(fname)
# Saving 2 data points in pickle to:
# --> data/2023-08-08_18:57:52_test_test_now.pkl
# Loaded 2 data points from:
# --> data/2023-08-08_18:57:52_test_test_now.pkl
```# The MIT License (MIT)
Copyright (c) 2017 Kevin J. Walchko
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.