Add track_times flag for HDFStore put method · Issue #32682 · pandas-dev/pandas (original) (raw)

When adding table to HDF using put method of HDFStore, it would be good to have option to set track_times flag used in pytables in method create_table. Thanks to this flag it is possible to stop tracking of times the file was changed. This is causing problems when versioning the HDF files and using checksums.

For this, it is necessary to propagate this flag from: https://github.com/pandas-dev/pandas/blob/master/pandas/io/pytables.py#L973 to this line: https://github.com/pandas-dev/pandas/blob/master/pandas/io/pytables.py#L4144