I have a simple Azure WebJob written in Python that utilizes the azure python package (which is located in a venv within my solution). The job executes as expected on my local machine, but when I deploy it to the Azure WebJob instance, I get the following error:
ImportError: No module named azure.storage.table
The actual .py is as follows:
from azure.storage.table import TableService
# get table service
table_service = TableService(account_name='myacct', account_key='mykey')
# delete table
table_service.delete_table('MyTable')
How can I access the azure package from the WebJob instance?