
style: sort imports & format parameters onto separate lines for better clarity Format all python files using `black`
25 lines
512 B
Python
Executable File
25 lines
512 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
|
|
import pika
|
|
|
|
connection = pika.BlockingConnection(
|
|
pika.ConnectionParameters(host="localhost"),
|
|
)
|
|
channel = connection.channel()
|
|
|
|
channel.queue_declare(queue="task_queue", durable=True)
|
|
|
|
message = " ".join(sys.argv[1:]) or "Hello World!"
|
|
channel.basic_publish(
|
|
exchange="",
|
|
routing_key="task_queue",
|
|
body=message,
|
|
properties=pika.BasicProperties(
|
|
delivery_mode=pika.DeliveryMode.Persistent,
|
|
),
|
|
)
|
|
print(f" [x] Sent {message}")
|
|
|
|
connection.close()
|