pandas dataframe to parquet s3

Solutions on MaxInterview for pandas dataframe to parquet s3 by the best coders in the world

showing results for - "pandas dataframe to parquet s3"
Art
16 Feb 2020
1import awswrangler as wr
2wr.pandas.to_parquet(
3    dataframe=df,
4    path="s3://my-bucket/key/my-file.parquet"
5)