ranaroussi / pystore

Fast data store for Pandas time-series data
Apache License 2.0
565 stars 101 forks source link

Cause of most silent append errors #54

Open ovresko opened 3 years ago

ovresko commented 3 years ago

https://github.com/ranaroussi/pystore/blob/f3c864ca9d9321b3d5a83793e3f325708aa5aef3/pystore/collection.py#L170 this is causing most of exceptions preventing append to work, maybe print something instead of empty return.

OnlyC commented 3 years ago

I have managed to append after some tries. Make sure u prepare your df right, set_index for it, index dtype="int64". The same when creating item.

yohplala commented 2 years ago

Hi @OnlyC , for information, I have started an alternative lib, oups that has some similarities with pystore. Please, beware this is my first project, but I would gladly accept any feedback on it.

@ranaroussi, I am aware this post may not be welcome and I am sorry if it is a bit rude. Please, remove it if it does.

ranaroussi commented 2 years ago

https://github.com/ranaroussi/pystore/blob/f3c864ca9d9321b3d5a83793e3f325708aa5aef3/pystore/collection.py#L170

this is causing most of exceptions preventing append to work, maybe print something instead of empty return.

I'd welcome a pull request :)