rabbitmq-tutorials/python
2010-12-13 15:52:21 +00:00
..
emit_log_direct.py use exclusive instead of auto-delete for #4 2010-12-13 15:42:37 +00:00
emit_log_topic.py use exclusive instead of auto-delete for #5 2010-12-13 15:52:21 +00:00
emit_log.py Connection.close is required to make sure the buffers are flushed. 2010-12-01 17:00:45 +00:00
new_task.py Connection.close is required to make sure the buffers are flushed. 2010-12-01 17:00:45 +00:00
README.md Drop the dependencies section. 2010-11-23 12:39:36 +00:00
receive_logs_direct.py use exclusive instead of auto-delete for #4 2010-12-13 15:42:37 +00:00
receive_logs_topic.py use exclusive instead of auto-delete for #5 2010-12-13 15:52:21 +00:00
receive_logs.py First cut of python/3 2010-10-06 16:28:29 +01:00
receive.py The queue should be named 'hello' instead of 'test' 2010-11-30 17:35:14 +00:00
rpc_client.py Fixed rpc client. 2010-11-30 14:04:31 +00:00
rpc_server.py Fixed rpc client. 2010-11-30 14:04:31 +00:00
send.py Merge remote branch 'origin/bug23558' 2010-12-02 17:45:52 +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