📜  pandas 数据框到 parquet s3 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:05.698000             🧑  作者: Mango

代码示例1
import awswrangler as wr
wr.pandas.to_parquet(
    dataframe=df,
    path="s3://my-bucket/key/my-file.parquet"
)