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)
| 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): |
no outgoing calls