Skip to content

Commit 2019b3c

Browse files
committed
Better command line examples for python.
1 parent 73ca6bc commit 2019b3c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

python/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,26 @@ You may first need to run
2626

2727
[Tutorial two: Work Queues](http://www.rabbitmq.com/tutorial-two-python.html):
2828

29-
python new_task.py
29+
python new_task.py "A very hard task which takes two seconds.."
3030
python worker.py
3131

3232

3333
[Tutorial three: Publish/Subscribe](http://www.rabbitmq.com/tutorial-three-python.html):
3434

3535
python receive_logs.py
36-
python emit_log.py
36+
python emit_log.py "info: This is the log message"
3737

3838

3939
[Tutorial four: Routing](http://www.rabbitmq.com/tutorial-four-python.html):
4040

41-
python receive_logs_direct.py
42-
python emit_log_direct.py
41+
python receive_logs_direct.py info
42+
python emit_log_direct.py info "The message"
4343

4444

4545
[Tutorial five: Topics](http://www.rabbitmq.com/tutorial-five-python.html):
4646

47-
python receive_logs_topic.py
48-
python emit_log_topic.py
47+
python receive_logs_topic.py "*.rabbit"
48+
python emit_log_topic.py red.rabbit Hello
4949

5050

5151
[Tutorial six: RPC](http://www.rabbitmq.com/tutorial-six-python.html):

0 commit comments

Comments
 (0)