skip to Main Content

Python Error when importing azure-eventhub on Mac Monterey

I am trying to import following: from azure.eventhub import EventData from azure.eventhub.aio import EventHubProducerClient from azure.eventhub.exceptions import EventHubError I get error: from azure.eventhub import EventData Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/azure/eventhub/__init__.py", line 5,…

VIEW QUESTION

Staging deployment with Bitbucket pipeline and Azure Static Web App

I could successfully deploy my project into the production environment using the provided documentation https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/static-web-apps/bitbucket.md pipelines: branches: main: - step: name: Deploy to test deployment: test script: - pipe: microsoft/azure-static-web-apps-deploy:main variables: APP_LOCATION: '$BITBUCKET_CLONE_DIR' OUTPUT_LOCATION: '$BITBUCKET_CLONE_DIR/dist' API_TOKEN: $deployment_token​ But there are…

VIEW QUESTION
Back To Top
Search