Within my Google Cloud Function (Python 3.7 Runtime) I have created a function that is trying to download all .csv files from a google storage bucket into a pandas dataframe (df). Once in a dataframe, I was going to do some light ETL work to it then convert it back one large .csv file to save to another bucket.
The problem I'm getting is when I get to the point of reading in the objects (converted to strings using file.download_as_string()) …
dataframe python-3.x pandas google-cloud-storage google-cloud-functions