├── README.md ├── host.json ├── lib └── AzureHTTPHelper.py └── myfunction1 ├── function.json └── run.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyeden/Azure-Functions-Python-HTTP-Example/HEAD/README.md -------------------------------------------------------------------------------- /host.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "a2a38496ceee4d11b8bc4e71788ac609" 3 | } 4 | -------------------------------------------------------------------------------- /lib/AzureHTTPHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyeden/Azure-Functions-Python-HTTP-Example/HEAD/lib/AzureHTTPHelper.py -------------------------------------------------------------------------------- /myfunction1/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyeden/Azure-Functions-Python-HTTP-Example/HEAD/myfunction1/function.json -------------------------------------------------------------------------------- /myfunction1/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyeden/Azure-Functions-Python-HTTP-Example/HEAD/myfunction1/run.py --------------------------------------------------------------------------------