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

Method read_json

dask/dataframe/backends.py:103–117  ·  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

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

Calls

no outgoing calls