Created a vanilla HTTP function (works):
import logging
import azure.functions as func
def main(req: func.HttpRequest) -> func.HttpResponse:
logging.info('Python HTTP trigger function processed a request.')
return func.HttpResponse('Hello', status_code=200)
I then installed the Azure SDK
When I try to reference one of these SDKs it throws errors for naming conficts
import azure.mgmt.compute
import azure.mgmt.network.models
import azure.mgmt.storage.models
[7/25/18 8:30:37 PM] import azure.functions # NoQA
[7/25/18 8:30:37 PM] ModuleNotFoundError: No module named 'azure.functions'
Created a vanilla HTTP function (works):
I then installed the Azure SDK
When I try to reference one of these SDKs it throws errors for naming conficts