title | description | services | keywords | author | ms.author | ms.date | ms.topic | ms.service | ms.custom | ms.devlang | manager |
---|---|---|---|---|---|---|---|---|---|---|---|
Create your first Python function in Azure |
Learn how to create your first Python function in Azure using the Azure Functions Core Tools and the Azure CLI. |
functions |
ggailey777 |
glenga |
08/29/2018 |
quickstart |
functions |
mvc |
python |
jeconnoc |
[!INCLUDE functions-python-preview-note]
This quickstart article walks you through how to use the Azure CLI to create your first serverless Python function app running on Linux. The function code is created locally and then deployed to Azure by using the Azure Functions Core Tools. To learn more about preview considerations for running your function apps on Linux, see this Functions on Linux article.
The following steps are supported on a Mac, Windows, or Linux computer.
To build and test locally, you will need to:
-
Install Python 3.6
-
Install Azure Functions Core Tools version 2.2.70 or later
To publish and run in Azure:
-
Install the Azure CLI version 2.x or later.
-
You need an active Azure subscription. [!INCLUDE quickstarts-free-trial-note]
To create a Functions project, it is required that you work in a Python 3.6 virtual environment. Run the following commands to create and activate a virtual environment named .env
.
# In Bash
python3.6 -m venv .env
source .env/bin/activate
# In PowerShell
py -3.6 -m venv .env
.env\scripts\activate
You can now create a local Functions project. This directory is the equivalent of a Function App in Azure. It can contain multiple functions that share the same local and hosting configuration.
In the terminal window or from a command prompt, run the following command:
func init MyFunctionProj
Pick python as the desired runtime.
Select a worker runtime:
1. dotnet
2. node
3. python
You see something like the following output.
Installing wheel package
Installing azure-functions package
Installing azure-functions-worker package
Running pip freeze
Writing .gitignore
Writing host.json
Writing local.settings.json
Writing /MyFunctionProj/.vscode/extensions.json
A new folder named MyFunctionProj is created. To continue, change directory to this folder.
cd MyFunctionProj
To create a function, run the following command:
func new
Choose HTTP Trigger
as the template and provide a function name of HttpTrigger
.
Select a template:
1. Blob trigger
2. Cosmos DB trigger
3. Event Grid trigger
4. Event Hub trigger
5. HTTP trigger
6. Queue trigger
7. Service Bus Queue trigger
8. Service Bus Topic trigger
9. Timer trigger
Choose option: 5
Function name: HttpTrigger
You see something like the following output.
Writing /MyFunctionProj/HttpTrigger/sample.dat
Writing /MyFunctionProj/HttpTrigger/__init__.py
Writing /MyFunctionProj/HttpTrigger/function.json
The function "HttpTrigger" was created successfully from the "HTTP trigger" template.
A sub-folder named HttpTrigger is created. This contains __init__.py
which is the primary script file and function.json
file which describes the trigger and bindings used by the function. To learn more about the programming model, you can refer to the Azure Functions Python developer guide.
Use the following command to run the Functions host locally.
func host start
When the Functions host starts, it outputs the URL of your HTTP-triggered function. (Note that the entire output has been truncated for readability.)
%%%%%%
%%%%%%
@ %%%%%% @
@@ %%%%%% @@
@@@ %%%%%%%%%%% @@@
@@ %%%%%%%%%% @@
@@ %%%% @@
@@ %%% @@
@@ %% @@
%%
%
...
Now listening on: http://0.0.0.0:7071
Application started. Press Ctrl+C to shut down.
...
Http Functions:
HttpTrigger: http://localhost:7071/api/HttpTrigger
Copy the URL of your function from the output and paste it into your browser's address bar. Append the query string ?name=<yourname>
to this URL and execute the request.
http://localhost:7071/api/HttpTrigger?name=<yourname>
The following screenshot shows the response from the function, when it is triggered from the browser:
You are now ready to create a Function App and other required resources for publishing to Azure.
[!INCLUDE functions-create-resource-group]
[!INCLUDE functions-create-storage-account]
The function app provides an environment for executing your function code. It lets you group functions as a logical unit for easier management, deployment, and sharing of resources. Create a Python function app running on Linux using the az functionapp create command.
Run the following command using a unique function app name in place of the <app_name>
placeholder and the storage account name for <storage_name>
. The <app_name>
is also the default DNS domain for the function app. This name needs to be unique across all apps in Azure.
az functionapp create --resource-group myResourceGroup --os-type Linux \
--consumption-plan-location westus --runtime python \
--name <app_name> --storage-account <storage_name>
Note
If you have an existing resource group named myResourceGroup
with any non-Linux App Service apps, you must use a different resource group. You can't host both Windows and Linux apps in the same resource group.
After the function app has been created, you will see the following message:
Your serverless Linux function app 'myfunctionapp' has been successfully created.
To active this function app, publish your app content using Azure Functions Core Tools or the Azure portal.
You are now ready to publish your local functions project to the Function App in Azure.
Using the Azure Functions Core Tools, run the following command. Replace <app_name>
with the name of your app from the previous step.
func azure functionapp publish <app_name>
You will see something like the following output, which has been truncated for readability.
Getting site publishing info...
...
Preparing archive...
Uploading content...
Upload completed successfully.
Deployment completed successfully.
Syncing triggers...
[!INCLUDE functions-test-function-code]
[!INCLUDE functions-cleanup-resources]
Learn more about developing Azure Functions using Python.
[!div class="nextstepaction"] Azure Functions Python developer guide Azure Functions triggers and bindings