- Reader/writer engine choice added. Provide the reader_engine parameter to reader.read() or the writer_engine to writer.write() to specify a particular reader for a given file or format.
1.1.0
Not secure
- Chunked reads are now possible; use chunksize as a parameter to reader.read to return an iterator of pandas dataframes, useful for dealing with files that would otherwise exceed memory. This iterator can be used as an input to writer.write.
1.0.4
Not secure
- Dataframes are no longer mutated when writing
1.0.3
Not secure
- made more consistent the use of type_category so that if it wasn't present when casting data it would be created
1.0.2
Not secure
- the writer now makes the folder path it is writing to if it does not exist when writing locally - added test for above addition
1.0.1
Not secure
- Removed `tests/__init__.py` not needed anymore. - Made the `File_Format.from_string()` a bit more expansive. Just now checks if `PARQUET`, `JSON` or `CSV` are in the string (in that order).