Skip to content

Commit bef907a

Browse files
committed
1561426, incorporated author review feedback.
1 parent 7452af4 commit bef907a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/azure-functions/functions-create-first-function-python.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ manager: gwallace
1313

1414
# Create an HTTP triggered function in Azure
1515

16-
This article shows you how to use command-line tools to create a Python project that runs in Azure Functions. An HTTP request triggers the function you create. Finally, you publish your project to run as a [serverless function](functions-scale.md#consumption-plan) in Azure.
16+
This article shows you how to use command-line tools to create a Python project that runs in Azure Functions. You also create a function that is triggered by an HTTP request. Finally, you publish your project to run as a [serverless function](functions-scale.md#consumption-plan) in Azure.
1717

1818
This article is the first of two Python quickstarts for Azure Functions. After you complete this quickstart, you can [add an Azure Storage queue output binding](functions-add-output-binding-storage-queue-python.md) to your function.
1919

@@ -33,7 +33,7 @@ Before you start, you must:
3333

3434
## Create and activate a virtual environment (optional)
3535

36-
You can use a Python 3.6.x environment to locally develop and test Python functions. Run the following commands to create and activate a virtual environment named `.venv`.
36+
You should use a Python 3.6.x environment to locally develop and test Python functions. Run the following commands to create and activate a virtual environment named `.venv`.
3737

3838
> [!NOTE]
3939
> If Python didn't install venv on your Linux distribution, you can install it using the following command:
@@ -175,15 +175,15 @@ az functionapp create --resource-group myResourceGroup --os-type Linux \
175175
--name <APP_NAME> --storage-account <STORAGE_NAME>
176176
```
177177
178-
The preceeding command will also provision an associated Azure Application Insights instance. It will be in the same resource group, which you can use for monitoring and viewing logs.
178+
The preceding command also provisions an associated Azure Application Insights instance in the same resource group. You can use this instance to monitor your function app and view logs.
179179
180180
You're now ready to publish your local functions project to the function app in Azure.
181181
182182
## Deploy the function app project to Azure
183183
184-
After you create the function app in Azure, you can use the [func azure functionapp publish](functions-run-local.md#project-file-deployment) Core Tools command to deploy your project code to Azure. In this examples, replace `<APP_NAME>` with the name of your app.
184+
After you create the function app in Azure, you can use the [func azure functionapp publish](functions-run-local.md#project-file-deployment) Core Tools command to deploy your project code to Azure. In this example, replace `<APP_NAME>` with the name of your app.
185185
186-
```azurecli-interactive
186+
```console
187187
func azure functionapp publish <APP_NAME> --build remote
188188
```
189189
@@ -205,7 +205,7 @@ Functions in myfunctionapp:
205205
Invoke url: https://myfunctionapp.azurewebsites.net/api/httptrigger?code=cCr8sAxfBiow548FBDLS1....
206206
```
207207
208-
You can copy the `Invoke url` value for your `HttpTrigger` and use it to test your function in Azure. The URL contains a `code` query string value that is your function key, which makes it difficult for others to call your HTTP trigger endpoint in Azure.
208+
You can copy the `Invoke url` value for your `HttpTrigger` and use it to verify your function in Azure. The URL contains a `code` query string value that is your function key, which makes it difficult for others to call your HTTP trigger endpoint in Azure.
209209
210210
[!INCLUDE [functions-test-function-code](../../includes/functions-test-function-code.md)]
211211

articles/storage/blobs/storage-quickstart-blobs-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.topic: quickstart
1111

1212
# Quickstart: Upload, download, and list blobs with Python
1313

14-
In this quickstart, you use Python to upload, download, and list block blobs in a container in Azure Blob storage. Blobs are simply objects that can hold any amount of text or binary data, including images, documents, streaming media, and archive data. Blobs in Azure Storage are different from file shares, schema-less tables, and message queues. For more info, see [Introduction to Azure Storage](/azure/storage/common/storage-introduction).
14+
In this quickstart, you use Python to upload, download, and list block blobs in a container in Azure Blob storage. Blobs are simply objects that can hold large amounts of text or binary data, including images, documents, streaming media, and archive data. Blobs in Azure Storage are different from file shares, schema-less tables, and message queues. For more info, see [Introduction to Azure Storage](/azure/storage/common/storage-introduction).
1515

1616
[!INCLUDE [storage-multi-protocol-access-preview](../../../includes/storage-multi-protocol-access-preview.md)]
1717

0 commit comments

Comments
 (0)