Contents
This release has no new features or changes in the user-facing API; two internal functions are moved:
json_lines._lib._maybe_gzip_open
is renamed tojson_lines.utils.maybe_gzip_open
;json_lines._lib._path_to_str
is renamed tojson_lines.utils.path_to_str
.
- Backwards incompatible:
json_lines.open_file
is made private and renamed tojson_lines._lib._maybe_gzip_open
; json_lines.open
now supports pathlib.Path objects;- docstrings are added to more functions;
- logging now uses "json_lines" logger;
- logging no longer uses string formatting;
- Python 3.7 support.
- README fixed
- Resume reading after error for plain and compressed files (#2)
json_lines.open
added,open_file
removed from docs
Initial release