rabbitmq-tutorials/python
2010-11-30 11:02:12 +00:00
..
emit_log_direct.py Code samples for next tutorial. 2010-11-26 14:53:22 +00:00
emit_log.py Actually, publishing to a non-existing exchange is fatal. 2010-10-18 17:00:56 +01:00
new_task.py examples should match the text 2010-10-07 16:47:05 +01:00
README.md Drop the dependencies section. 2010-11-23 12:39:36 +00:00
receive_logs_direct.py Code samples for next tutorial. 2010-11-26 14:53:22 +00:00
receive_logs.py First cut of python/3 2010-10-06 16:28:29 +01:00
receive.py Don't limit the printed messages. 2010-11-23 14:01:01 +00:00
rpc_client.py Rpc examples 2010-11-30 11:02:12 +00:00
rpc_server.py Rpc examples 2010-11-30 11:02:12 +00:00
send.py Python tutorial 2010-09-24 14:50:20 +00:00
worker.py examples should match the text 2010-10-07 16:47:05 +01:00

Python code for RabbitMQ tutorials

Here you can find a Python code examples from RabbitMQ tutorials.

Code

Tutorial one: "Hello World!":

python send.py
python receive.py

Tutorial two: Work Queues:

python new_task.py
python worker.py

Tutorial three: Publish/Subscribe

python receive_logs.py
python emit_log.py