Dynamic file names for Blob out bindings - Python
I am currently workig with an HTTP trigger with some paramateres. Based on those parameters I do some calculations and save results into a file on blob storage account. Currently I am saving them in static file name defined on binding but I woul dlike to be able to generate dynamically the file name in the az func code.
For example:
{
"type": "blob",
"direction": "out",
"name": "outputBlob",
"path": "container/{calculatedFileName}.csv",
"connection": "AzureWebJobsStorage"
}
where calculatedFileName is something we define in the code.
Is that something feasible? I am using Python.
Thanks in advanced.

This is currently not supported, but you can use https://pypi.org/project/azure-storage-blob/ to do this.
- Sonia
Azure Functions PM Team