DAS_2024_1/kosheev_maksim_lab_4/lesson3-publish-subscribe/emit_log.py

15 lines
468 B
Python
Raw Normal View History

2024-12-04 00:28:01 +04:00
import pika
import sys
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()