Skip to content

Commit a9a3047

Browse files
DOC: fix ES01 for pandas.read_json (#60900)
1 parent 859b873 commit a9a3047

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/io/json/_json.py

+6
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,12 @@ def read_json(
520520
"""
521521
Convert a JSON string to pandas object.
522522
523+
This method reads JSON files or JSON-like data and converts them into pandas
524+
objects. It supports a variety of input formats, including line-delimited JSON,
525+
compressed files, and various data representations (table, records, index-based,
526+
etc.). When `chunksize` is specified, an iterator is returned instead of loading
527+
the entire data into memory.
528+
523529
Parameters
524530
----------
525531
path_or_buf : a str path, path object or file-like object

0 commit comments

Comments
 (0)