
style: sort imports & format parameters onto separate lines for better clarity Format all python files using `black`
18 lines
411 B
Python
Executable File
18 lines
411 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
|
|
import pika
|
|
|
|
connection = pika.BlockingConnection(
|
|
pika.ConnectionParameters(host="localhost"),
|
|
)
|
|
channel = connection.channel()
|
|
|
|
channel.exchange_declare(exchange="logs", exchange_type="fanout")
|
|
|
|
message = " ".join(sys.argv[1:]) or "info: Hello World!"
|
|
channel.basic_publish(exchange="logs", routing_key="", body=message)
|
|
print(f" [x] Sent {message}")
|
|
|
|
connection.close()
|