I have working python scripts that read information from a CSV file into a pandas dataframe, then display the pandas dataframe in my Python console window. I would like to incorporate this script into a website using AWS Lambda, where the dataframe is printed on screen in AWS versus my Python console. I am new to coding and do not have much experience with AWS or Lambda. Could someone please refer me to the resources needed to do this?
I know I will need to somehow store the file in the cloud, most likely using S3. Then I need to have a lambda script to read the file from S3. Are there any resources you all have used to learn this?
Thank you!