Hello I'm getting an error when uploading a new azure webjob. The error says it cant create the webjob.
I followed this tutorial which I found it in a question that was asked in here. Link
My script is the following:
import sys, os
sys.path.append(os.path.join(os.getcwd(), "site-packages"))
import requests as req
r = req.get('http://my_website.azurewebsites.net/user/cron')
# Development
# r = req.get('http://localhost:5000/user/cron')
print(r.status_code)
And the structure of my files is this one
If anyone can point out where I made a mistake, I just searched for hours and many questions and tutorials point out this is the proper way to add a library in Azure.