├── .gitignore ├── .vscode ├── launch.json ├── settings.json-example └── tasks.json ├── HttpFunction ├── __init__.py ├── function.json └── sample.dat ├── QueueFunction ├── __init__.py ├── function.json ├── readme.md └── sample.dat ├── README.md ├── host.json ├── local.settings.json-example └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/.vscode/settings.json-example -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /HttpFunction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/HttpFunction/__init__.py -------------------------------------------------------------------------------- /HttpFunction/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/HttpFunction/function.json -------------------------------------------------------------------------------- /HttpFunction/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } 4 | -------------------------------------------------------------------------------- /QueueFunction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/QueueFunction/__init__.py -------------------------------------------------------------------------------- /QueueFunction/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/QueueFunction/function.json -------------------------------------------------------------------------------- /QueueFunction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/QueueFunction/readme.md -------------------------------------------------------------------------------- /QueueFunction/sample.dat: -------------------------------------------------------------------------------- 1 | sample queue data 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/README.md -------------------------------------------------------------------------------- /host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/host.json -------------------------------------------------------------------------------- /local.settings.json-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/local.settings.json-example -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhummelmose/azure-functions-python-poetry/HEAD/pyproject.toml --------------------------------------------------------------------------------