Skip to content

Instantly share code, notes, and snippets.

@csotomon
Created August 21, 2020 04:01
Show Gist options
  • Save csotomon/4134a4432db305e21610a38a54c98a6b to your computer and use it in GitHub Desktop.
Save csotomon/4134a4432db305e21610a38a54c98a6b to your computer and use it in GitHub Desktop.
azure function with pyodbc
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