Read CSV files into a DataFrame collection Parameters ---------- urlpath : str or list Source path(s). **kwargs : Optional backend kwargs. See Also -------- dask.dataframe.io.csv.read_csv
(urlpath: str | list, **kwargs)
| 137 | |
| 138 | @staticmethod |
| 139 | def read_csv(urlpath: str | list, **kwargs): |
| 140 | """Read CSV files into a DataFrame collection |
| 141 | |
| 142 | Parameters |
| 143 | ---------- |
| 144 | urlpath : str or list |
| 145 | Source path(s). |
| 146 | **kwargs : |
| 147 | Optional backend kwargs. |
| 148 | |
| 149 | See Also |
| 150 | -------- |
| 151 | dask.dataframe.io.csv.read_csv |
| 152 | """ |
| 153 | raise NotImplementedError |
| 154 | |
| 155 | @staticmethod |
| 156 | def read_hdf(pattern: str | list, key: str, **kwargs): |
no outgoing calls