File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -708,14 +708,17 @@ def read_parquet(
708708 Reading in chunks (Chunk by file)
709709
710710 >>> import awswrangler as wr
711- >>> dfs = wr.s3.read_parquet(path=['s3://bucket/filename0.csv ', 's3://bucket/filename1.csv '], chunked=True)
711+ >>> dfs = wr.s3.read_parquet(path=['s3://bucket/filename0.parquet ', 's3://bucket/filename1.parquet '], chunked=True)
712712 >>> for df in dfs:
713713 >>> print(df) # Smaller Pandas DataFrame
714714
715715 Reading in chunks (Chunk by 1MM rows)
716716
717717 >>> import awswrangler as wr
718- >>> dfs = wr.s3.read_parquet(path=['s3://bucket/filename0.csv', 's3://bucket/filename1.csv'], chunked=1_000_000)
718+ >>> dfs = wr.s3.read_parquet(
719+ ... path=['s3://bucket/filename0.parquet', 's3://bucket/filename1.parquet'],
720+ ... chunked=1_000_000
721+ ... )
719722 >>> for df in dfs:
720723 >>> print(df) # 1MM Pandas DataFrame
721724
You can’t perform that action at this time.
0 commit comments