Releases: shawnbrown/get_reader
Releases · shawnbrown/get_reader
1.0.0
0.0.2
-
Added
from_sql()constructor to read database tables or SQL results. -
Added support for
Series,Index, andMultiIndexobjects to the
existingfrom_pandas()constructor. -
Added a
Readerclass to provide consistent return values and automatic
resource-handling (for closing files, database cursors, etc.). -
Changed all constructors to return
Readerinstances. -
Fixed file-closing behavior when DBF files are not fully consumed.
-
Changed
from_datatest()tofrom_squint()to reflect new package name. -
Added Python 2 support statement to README:
While official support for Python 2 ends on January 1, 2020, this
project will continue to support older versions as long as the
existing ecosystem provides the ability to run automated tests
on those older versions.
0.0.1
- First public release of packaged module.
- Added
ReaderLikeclass to help make type-checking more convenient. - Removed support for Python 3.1.
0.0.1.dev2 (2018-02-20)
- Added
from_datatest()constructor method to read datatestSelectand
Queryobjects. - Added
from_dicts()constructor method to read iterables of
dictionary rows. - Added
from_dbf()to read DBF files (dBase, FoxPro, etc.).
0.0.1.dev1 (2018-01-18)
- Added
get_reader()to auto-detect objects and use appropriate constructor. - Added
from_csv()to support Unicode-aware CSV handling in Python 2 and
Python 3. - Added
from_pandas()constructor method to read pandasDataFrameobjects. - Added
from_excel()to read MS Excel files.