EntrypointType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the type of entrypoint for a Python application.
public enum EntrypointType
type EntrypointType =
Public Enum EntrypointType
- Inheritance
-
EntrypointType
Fields
| Name | Value | Description |
|---|---|---|
| Executable | 0 | A standalone executable from the virtual environment (e.g., "uvicorn", "flask", "pytest"). |
| Script | 1 | A Python script file to execute directly (e.g., "main.py", "app.py"). |
| Module | 2 | A Python module to run via |