Created
August 21, 2020 04:01
-
-
Save csotomon/4134a4432db305e21610a38a54c98a6b to your computer and use it in GitHub Desktop.
azure function with pyodbc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import pyodbc | |
import azure.functions as func | |
def main(req: func.HttpRequest) -> func.HttpResponse: | |
return func.HttpResponse(f"This Azure function rocks. With pyodbc version {pyodbc.version}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment