Hi folks
I am facing an issue with my connection between Streamlit and aws s3
here I share my code snipped:
conn = st.connection('s3', type=FilesConnection)
df = conn.read("s3://bucket/file.parquet", input_format='parquet')
I mostly use parquet files because of the possibility of filtering and selecting columns before even loading the full data to a variable. Is there any way I could do these queries using conn.read too?
I will appreciate your help!
thanks!