Read a CSV file from s3 without saving it to the disk

from blog Redowan's Reflections, | ↗ original
I frequently have to write ad-hoc scripts that download a CSV file from s31, do some processing on it, and then create or update objects in the production database using the parsed information from the file. In Python, it’s trivial to download any file from s3 via boto32, and then the file can be read with the csv module from the standard...