You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/quickstart-python-vscode.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
55
55
| Python version | Python 3.7, 3.8, or 3.9 | Visual Studio Code will create a virtual environment with the version you select. |
56
56
| Select a template for your project's first function | Skip for now ||
57
57
| Select how you would like to open your project | Open in current window | Reopens Visual Studio Code in the folder you selected. |
58
+
::: zone-end
58
59
59
60
::: zone pivot="python-mode-decorators"
60
61
@@ -67,7 +68,6 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
67
68
| Python version | Python 3.7, 3.8, or 3.9 | Visual Studio Code will create a virtual environment with the version you select. |
68
69
| Select a template for your project's first function | Skip for now ||
69
70
| Select how you would like to open your project | Open in current window | Reopens Visual Studio Code in the folder you selected. |
70
-
71
71
::: zone-end
72
72
73
73
@@ -172,12 +172,13 @@ Finally, you'll add an HTTP triggered function that starts the orchestration.
172
172
You've added an HTTP triggered function that starts an orchestration. Open *DurableFunctionsHttpStart/\_\_init__.py* to see that it uses `client.start_new` to start a new orchestration. Then it uses `client.create_check_status_response` to return an HTTP response containing URLs that can be used to monitor and manage the new orchestration.
173
173
174
174
You now have a Durable Functions app that can be run locally and deployed to Azure.
175
+
::: zone-end
175
176
176
177
::: zone pivot="python-mode-decorators"
177
178
178
179
Using the V2 Python programming model, all these functions can be placed in a single file. To do this, replace the contents of `function_app.py` with the following code.
0 commit comments