polars.DataFrame.write_json#
- DataFrame.write_json( ) str | None [source]#
Serialize to JSON representation.
- Parameters:
- file
File path or writable file-like object to which the result will be written. If set to
None
(default), the output is returned as a string instead.- row_oriented
Write to row oriented json. This is slower, but more common.
- pretty
Pretty serialize json.
Deprecated since version 0.20.31: The
pretty
functionality forwrite_json
will be removed in the next breaking release. Useserialize()
to serialize the DataFrame in the regular JSON format.
See also
Examples
>>> df = pl.DataFrame( ... { ... "foo": [1, 2, 3], ... "bar": [6, 7, 8], ... } ... ) >>> df.write_json(row_oriented=True) '[{"foo":1,"bar":6},{"foo":2,"bar":7},{"foo":3,"bar":8}]'