How To Create Function Group
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
- Feedback
- Edit
Quickstart: Create a Python function in Azure from the command line
- 9 minutes to read
Thank you.
- C#
- Java
- JavaScript
- PowerShell
- Python
- TypeScript
In this article, you use command-line tools to create a Python function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions.
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
There is also a Visual Studio Code-based version of this article.
Configure your local environment
Before you begin, you must have the following:
-
An Azure account with an active subscription. Create an account for free.
-
The Azure Functions Core Tools version 4.x.
-
One of the following tools for creating Azure resources:
-
Azure CLI version 2.4 or later.
-
The Azure Az PowerShell module version 5.9.0 or later.
-
-
Python versions that are supported by Azure Functions
Prerequisite check
Verify your prerequisites, which depend on whether you are using Azure CLI or Azure PowerShell for creating Azure resources:
- Azure CLI
- Azure PowerShell
-
In a terminal or command window, run
func --versionto check that the Azure Functions Core Tools are version 4.x. -
Run
az --versionto check that the Azure CLI version is 2.4 or later. -
Run
az loginto sign in to Azure and verify an active subscription. -
Run
python --version(Linux/macOS) orpy --version(Windows) to check your Python version reports 3.9.x, 3.8.x, or 3.7.x.
Create and activate a virtual environment
In a suitable folder, run the following commands to create and activate a virtual environment named .venv. Be sure to use Python 3.8, 3.7 or 3.6, which are supported by Azure Functions.
- bash
- PowerShell
- Cmd
python -m venv .venv source .venv/bin/activate If Python didn't install the venv package on your Linux distribution, run the following command:
sudo apt-get install python3-venv You run all subsequent commands in this activated virtual environment.
Create a local function project
In Azure Functions, a function project is a container for one or more individual functions that each responds to a specific trigger. All functions in a project share the same local and hosting configurations. In this section, you create a function project that contains a single function.
-
Run the
func initcommand, as follows, to create a functions project in a folder named LocalFunctionProj with the specified runtime:func init LocalFunctionProj --python -
Navigate into the project folder:
cd LocalFunctionProjThis folder contains various files for the project, including configurations files named local.settings.json and host.json. Because local.settings.json can contain secrets downloaded from Azure, the file is excluded from source control by default in the .gitignore file.
-
Add a function to your project by using the following command, where the
--nameargument is the unique name of your function (HttpExample) and the--templateargument specifies the function's trigger (HTTP).func new --name HttpExample --template "HTTP trigger" --authlevel "anonymous"func newcreates a subfolder matching the function name that contains a code file appropriate to the project's chosen language and a configuration file named function.json.
(Optional) Examine the file contents
If desired, you can skip to Run the function locally and examine the file contents later.
__init__.py
__init__.py contains a main() Python function that's triggered according to the configuration in function.json.
import logging import azure.functions as func def main(req: func.HttpRequest) -> func.HttpResponse: logging.info('Python HTTP trigger function processed a request.') name = req.params.get('name') if not name: try: req_body = req.get_json() except ValueError: pass else: name = req_body.get('name') if name: return func.HttpResponse(f"Hello, {name}. This HTTP triggered function executed successfully.") else: return func.HttpResponse( "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response.", status_code=200 ) For an HTTP trigger, the function receives request data in the variable req as defined in function.json. req is an instance of the azure.functions.HttpRequest class. The return object, defined as $return in function.json, is an instance of azure.functions.HttpResponse class. To learn more, see Azure Functions HTTP triggers and bindings.
function.json
function.json is a configuration file that defines the input and output bindings for the function, including the trigger type.
You can change scriptFile to invoke a different Python file if desired.
{ "scriptFile": "__init__.py", "bindings": [ { "authLevel": "function", "type": "httpTrigger", "direction": "in", "name": "req", "methods": [ "get", "post" ] }, { "type": "http", "direction": "out", "name": "$return" } ] } Each binding requires a direction, a type, and a unique name. The HTTP trigger has an input binding of type httpTrigger and output binding of type http.
Run the function locally
-
Run your function by starting the local Azure Functions runtime host from the LocalFunctionProj folder:
func startToward the end of the output, the following lines should appear:
... Now listening on: http://0.0.0.0:7071 Application started. Press Ctrl+C to shut down. Http Functions: HttpExample: [GET,POST] http://localhost:7071/api/HttpExample ...
Note
If HttpExample doesn't appear as shown above, you likely started the host from outside the root folder of the project. In that case, use Ctrl+C to stop the host, navigate to the project's root folder, and run the previous command again.
-
Copy the URL of your
HttpExamplefunction from this output to a browser and append the query string?name=<YOUR_NAME>, making the full URL likehttp://localhost:7071/api/HttpExample?name=Functions. The browser should display a response message that echoes back your query string value. The terminal in which you started your project also shows log output as you make requests. -
When you're done, use Ctrl+C and choose
yto stop the functions host.
Create supporting Azure resources for your function
Before you can deploy your function code to Azure, you need to create three resources:
- A resource group, which is a logical container for related resources.
- A Storage account, which maintains state and other information about your projects.
- A function app, which provides the environment for executing your function code. A function app maps to your local function project and lets you group functions as a logical unit for easier management, deployment, and sharing of resources.
Use the following commands to create these items. Both Azure CLI and PowerShell are supported.
-
If you haven't done so already, sign in to Azure:
- Azure CLI
- Azure PowerShell
az loginThe az login command signs you into your Azure account.
-
When using the Azure CLI, you can turn on the
param-persistoption that automatically tracks the names of your created resources. To learn more, see Azure CLI persisted parameter.- Azure CLI
- Azure PowerShell
az config param-persist on -
Create a resource group named
AzureFunctionsQuickstart-rgin your chosen region:- Azure CLI
- Azure PowerShell
az group create --name AzureFunctionsQuickstart-rg --location <REGION>The az group create command creates a resource group. In the above command, replace
<REGION>with a region near you, using an available region code returned from the az account list-locations command.Note
You can't host Linux and Windows apps in the same resource group. If you have an existing resource group named
AzureFunctionsQuickstart-rgwith a Windows function app or web app, you must use a different resource group. -
Create a general-purpose storage account in your resource group and region:
- Azure CLI
- Azure PowerShell
az storage account create --name <STORAGE_NAME> --sku Standard_LRSThe az storage account create command creates the storage account.
In the previous example, replace
<STORAGE_NAME>with a name that is appropriate to you and unique in Azure Storage. Names must contain three to 24 characters numbers and lowercase letters only.Standard_LRSspecifies a general-purpose account, which is supported by Functions.The storage account incurs only a few cents (USD) for this quickstart.
-
Create the function app in Azure:
- Azure CLI
- Azure PowerShell
az functionapp create --consumption-plan-location westeurope --runtime python --runtime-version 3.8 --functions-version 3 --name <APP_NAME> --os-type linuxThe az functionapp create command creates the function app in Azure. If you are using Python 3.7 or 3.6, change
--runtime-versionto3.7or3.6, respectively. You must supply--os-type linuxbecause Python functions can't run on Windows, which is the default.In the previous example, replace
<APP_NAME>with a globally unique name appropriate to you. The<APP_NAME>is also the default DNS domain for the function app.This command creates a function app running in your specified language runtime under the Azure Functions Consumption Plan, which is free for the amount of usage you incur here. The command also provisions an associated Azure Application Insights instance in the same resource group, with which you can monitor your function app and view logs. For more information, see Monitor Azure Functions. The instance incurs no costs until you activate it.
Deploy the function project to Azure
After you've successfully created your function app in Azure, you're now ready to deploy your local functions project by using the func azure functionapp publish command.
In the following example, replace <APP_NAME> with the name of your app.
func azure functionapp publish <APP_NAME> The publish command shows results similar to the following output (truncated for simplicity):
... Getting site publishing info... Creating archive for current directory... Performing remote build for functions project. ... Deployment successful. Remote build succeeded! Syncing triggers... Functions in msdocs-azurefunctions-qs: HttpExample - [httpTrigger] Invoke url: https://msdocs-azurefunctions-qs.azurewebsites.net/api/httpexample
Invoke the function on Azure
Because your function uses an HTTP trigger, you invoke it by making an HTTP request to its URL in the browser or with a tool like curl.
- Browser
- curl
Copy the complete Invoke URL shown in the output of the publish command into a browser address bar, appending the query parameter &name=Functions. The browser should display similar output as when you ran the function locally.
Run the following command to view near real-time streaming logs in Application Insights in the Azure portal:
func azure functionapp logstream <APP_NAME> --browser In a separate terminal window or in the browser, call the remote function again. A verbose log of the function execution in Azure is shown in the terminal.
Clean up resources
If you continue to the next step and add an Azure Storage queue output binding, keep all your resources in place as you'll build on what you've already done.
Otherwise, use the following command to delete the resource group and all its contained resources to avoid incurring further costs.
- Azure CLI
- Azure PowerShell
az group delete --name AzureFunctionsQuickstart-rg Next steps
Having issues? Let us know.
Feedback
How To Create Function Group
Source: https://docs.microsoft.com/en-us/azure/azure-functions/create-first-function-cli-python
Posted by: longgonly1982.blogspot.com

0 Response to "How To Create Function Group"
Post a Comment