Azure Functions Sample in Python
- Ensure 64-bit Python is installed.
- Create a new directory for azure functions
mkdir azurefunctionssamples && cd azurefunctionssamples
- Create an azure functions project
func init myazurefunctionssample --language python
- Create a new function with Http Trigger
func new --name HttpTrigger --template "HTTP trigger"
- To run azure function locally on your machine, open cmd or powershell as admin and execute
func host start
Azure Functions Sample
- C# : Directly Create from Visual Studio
- Java: Maven archtype is supported for the functions project.
Like this:
Like Loading...