I want to write a pandas dataframe to my s3 bucket with the following method:
df.to_parquet(s3_bucket_url)
However, this method will use my default AWS credentials. I have multiple profiles in my AWS credentials and I would like to know how to specify the one I want to use when I am calling the methode df.to_parquet.
Thanks