This may be a very basic question but forgive me, I am a week old in AZURE. I have built a webjob and it executes my basic python scripts quite well within my service app interactive window in Azure portal. I call them basic python scripts because they import no specialized modules. I have more complex python scripts which are currently scheduled in windows scheduler and would like to get them managed within webjobs. The scripts import multiple python libraries including specialized spatial ones.
In the windows task scheduler I direct them to be executed by a set cloned environment which has all relevant packages installed.
- How can I do this in webjobs on a VM?
- All I have got concerning getting started with webjob SDKs is this article with everything done in C# in which I have no experience. Can someone direct me to a python resource that does the same if it exists.
See what I have tried
When I check in the logs this is what I get
Usually the modules that cannot be found are in a cloned envirnment which I direct the windows scheduler to read from. How do I do this in webjobs?