Skip to content Skip to sidebar Skip to footer

Pytables Appending Recarray

I have stock tick data in csv files and for the life of me I cannot figure out why bulk inserts are not working. I have created recarray called insert_records with the following t

Solution 1:

python objects cannot be used to append to pytables. pytables needs exact recarray datatypes.

This would append if the dtype is changed.

 dtype[0] = "|S14"

Post a Comment for "Pytables Appending Recarray"