What is the best way to periodically add data (probably csv) to a blob using python?
I have transaction data that I poll from an API, and I'd like to periodically add that transaction data to azure storage so that I can use BI tools, such as PowerBI.
I'm thinking I can schedule a cloud function that Polls the API every day and sends a csv to the azure blob.. would this work?