Can Streamlit read files from AWS S3 bucket in incremental way to display in dashboard

Hi All,

I am new to Streamlit , Can streamlit read files from s3 bucket incrementally like every 2 mins one file will be added to s3 bucket, can streamlit be able to read only new file from s3 bucket each time instead of reading all files that is ( old + new files ).

Please suggest , how streamlit can only read new files each time from S3 Bucket.

Appreciate your help

Hi @av76 -

I could imagine a workflow where you session state to keep track of which files have already been read from S3 and which ones might be new, but for the most part, this would be base Python programming. Meaning, this is too specific of a use-case to be built into Streamlit directly, but the component parts probably exist.

Best,
Randy

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.