I'm trying to create a webjob in python that listens to a queue. I have done the same in c# with the following code,
public static void ProcessQueueMessage([QueueTrigger("webjobsqueue")] string inputText,
[Blob("containername/blobname")]TextWriter writer)
{
writer.WriteLine(inputText);
}
I want the equivalent in python that listens to a queue and trigger the python file.
public static void ProcessQueueMessage([QueueTrigger("webjobsqueue")] string inputText,
[Blob("containername/blobname")]TextWriter writer)
{
writer.WriteLine(inputText);
}
I want the equivalent in python that listens to a queue and trigger the python file.