Reputation: 72151
I have this really weird issue with Flask app crashing when importing azure.storage. So I have this code:
from azure.storage.queue import QueueService
As soon as I deploy it to Azure, it fails. Any ideas ? I have put both Azure and Azure-Storage in requirements.txt.
What could possibly be wrong? Thanks!
Upvotes: 1
Views: 93
Reputation: 72151
Azure-storage 0.33.0 (latest as of now) has a dependency of cryptography package, which fails to install, take a look here:
https://github.com/Azure/azure-storage-python/issues/219
workaround: use earlier version, 0.32.0, for example
Upvotes: 1