RabbitMQ library written in Python. Responsible for brokering messages between different services.
To install the library first clone the code and then follow the instruction below
pip install .
pip install -r requirements.txt
In your project, you could use this library by importing tc_messageBroker
and to load sub-modules just separate it by dot. For example
from tc_messageBroker import RabbitMQ
from tc_messageBroker.rabbit_mq.queue import Queue
from tc_messageBroker.rabbit_mq.event import Event
You can find examples under example directory.