Skip to main content

A library to store data in common formats

Project description

image

The Collector

.github/workflows/python.yaml GitHub Latest Version image image PyPI - Downloads

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 for examples of how to use it.

from collector import Collector

c = 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.

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

the_collector-2023.8.26.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

the_collector-2023.8.26-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file the_collector-2023.8.26.tar.gz.

File metadata

  • Download URL: the_collector-2023.8.26.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/21.6.0

File hashes

Hashes for the_collector-2023.8.26.tar.gz
Algorithm Hash digest
SHA256 7449569566530704f44de07471ee7c8984708fc534d01ceba6374ea00df4f881
MD5 e5ee24a2a2d5ac93c1e6fce2ac39df44
BLAKE2b-256 63446a78b2fb46b8a8e18b4707a5da2ff0cd795272da7fc4bd160a5006fe8b01

See more details on using hashes here.

File details

Details for the file the_collector-2023.8.26-py3-none-any.whl.

File metadata

File hashes

Hashes for the_collector-2023.8.26-py3-none-any.whl
Algorithm Hash digest
SHA256 d810b630502e592594075528891f930cc16fbe1b53434c3108b9776b5d198051
MD5 4a6ade38f7e2850acb091cd3fa09ff22
BLAKE2b-256 7114a01b3c9143913a9e6f19ec16b635b9fef8cf2ac8721c589af5d7d3824211

See more details on using hashes here.

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