MCPcopy Create free account
hub / github.com/dask/dask / read_json

Method read_json

dask/dataframe/backends.py:105–119  ·  view source on GitHub ↗

Read json files into a DataFrame collection Parameters ---------- url_path : str or list Source path(s). **kwargs : Optional backend kwargs. See Also -------- dask.dataframe.io.json.read_json

(url_path: str | list, **kwargs)

Source from the content-addressed store, hash-verified

103
104 @staticmethod
105 def read_json(url_path: str | list, **kwargs):
106 """Read json files into a DataFrame collection
107
108 Parameters
109 ----------
110 url_path : str or list
111 Source path(s).
112 **kwargs :
113 Optional backend kwargs.
114
115 See Also
116 --------
117 dask.dataframe.io.json.read_json
118 """
119 raise NotImplementedError
120
121 @staticmethod
122 def read_orc(path: str | list, **kwargs):

Calls

no outgoing calls