We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a092ede commit 1c0cd02Copy full SHA for 1c0cd02
pandas/io/parquet.py
@@ -352,6 +352,7 @@ def read(
352
filters=None,
353
storage_options: StorageOptions | None = None,
354
filesystem=None,
355
+ to_pandas_kwargs: dict | None = None,
356
**kwargs,
357
) -> DataFrame:
358
parquet_kwargs: dict[str, Any] = {}
@@ -367,6 +368,10 @@ def read(
367
368
raise NotImplementedError(
369
"filesystem is not implemented for the fastparquet engine."
370
)
371
+ if to_pandas_kwargs is not None:
372
+ raise NotImplementedError(
373
+ "to_pandas_kwargs is not implemented for the fastparquet engine."
374
+ )
375
path = stringify_path(path)
376
handles = None
377
if is_fsspec_url(path):
0 commit comments