Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gzipped jsonl reader #82

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions srsly/_json_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,18 @@ def read_jsonl(path: FilePath, skip: bool = False) -> Iterable[JSONOutput]:
for line in _yield_json_lines(f, skip=skip):
yield line

def read_gzip_jsonl(path: FilePath, skip: bool = False) -> Iterable[JSONOutput]:
"""Read a gzipped .jsonl file and yield contents line by line.
Blank lines will always be skipped.

path (FilePath): The file path.
skip (bool): Skip broken lines and don't raise ValueError.
YIELDS (JSONOutput): The loaded JSON contents of each line.
"""
file_path = force_path(path)
with gzip.open(file_path, "r") as f:
for line in _yield_juson_lines(f, skip=skip)
yield line

def write_jsonl(
path: FilePath,
Expand Down