Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 916 Bytes

File metadata and controls

18 lines (14 loc) · 916 Bytes
author ggailey777
ms.service azure-functions
ms.topic include
ms.date 05/01/2024
ms.author glenga

Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.

The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the Python developer guide.

The Python v1 programming model requires you to define bindings in a separate function.json file in the function folder. For more information, see the Python developer guide.


This article supports both programming models.