Read Parquet files into a DataFrame collection Parameters ---------- path : str or list Source path(s). **kwargs : Optional backend kwargs. See Also -------- dask.dataframe.io.parquet.core.read_parquet
(path: str | list, **kwargs)
| 84 | |
| 85 | @staticmethod |
| 86 | def read_parquet(path: str | list, **kwargs): |
| 87 | """Read Parquet files into a DataFrame collection |
| 88 | |
| 89 | Parameters |
| 90 | ---------- |
| 91 | path : str or list |
| 92 | Source path(s). |
| 93 | **kwargs : |
| 94 | Optional backend kwargs. |
| 95 | |
| 96 | See Also |
| 97 | -------- |
| 98 | dask.dataframe.io.parquet.core.read_parquet |
| 99 | """ |
| 100 | raise NotImplementedError |
| 101 | |
| 102 | @staticmethod |
| 103 | def read_json(url_path: str | list, **kwargs): |
no outgoing calls