I have a data frame, let's say:
import pandas as pd
df = pd.DataFrame({'a': [1, 4], 'b': [1, 3]})
I want to save it as a feather file to s3 but I can't find a working way to do it.
I tried to use s3bp and s3fs but they don't do the trick.
Any suggestion?