An Azure service that provides an event-driven serverless compute platform.
Hi @Kumar, Arun
Azure Functions Python developer guide is the documentation you're looking for. But you do have a couple of options.
- You can adjust the
scriptFileinfunction.jsonto point tocasings.py. You will need to make sure you have so that your function can trigger (make sure you adjust the function for any bindings you may have).
import azure.functions
def main(req: azure.functions.HttpRequest) -> str:
user = req.params.get('user')
return f'Hello, {user}!'
- Reference
casings.pyfrom__init__.pyviaimport * from casingsand your function(s) inside your trigger.