yokawasa / azure-functions-python-samples

Azure Functions Python Sample Codes. NOTE: The project, hosted in a repository, is no longer actively maintained by its creators or contributors. There won't be any further updates, bug fixes, or support from the original developers in the project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

One thing I woluld like to know that about azure functions by written python3

LenKIM opened this issue · comments

First of all, Thank you for my PR.

At this moment, I wolud like to make automatically python crawler application included http.
But, I don't know how to use Azure function effiently

As your repository, 'https://github.com/yokawasa/azure-functions-python-samples/tree/master/blob-trigger-blob-in-out-bindings' mention that using blob storage seems like possible.

why I need blob storage is that I would like make .csv files from python3 files then I stores those .csv files to Blob storage

How can I solve this problem??

Again, I would like make the process automatically crawer written by pyhton3 with Azure functions. What is the most effient way to make the process ?

Thank you.

@LenKIM
Sorry for the delay.

As you know, default Python platform version that Azure Functions support is Python 2.7.X. Here is a document on how to change the python version that I added before.
https://github.com/yokawasa/azure-functions-python-samples/blob/master/docs/custom-python-version.md
Hope it would help

Thanks you for my Question.