Accessing/Working with rabbitmq Queue using python

I am trying to create an page to monitor RabbitMQ Queues in our application. I want to know how I can perform following operations. I am using Python and Django for the back-end.

  1. How to get the number of queues and read their data.
  2. How to Purge/Delete the tasks under queue.
  3. How to get size (count) of the queue.

Thanks in Advance.

Back to Top