distributed-computing/tasks/lyamzina-ma/lab_4/python4Lab/Tut3/receive_logs.py
2023-12-18 16:41:19 +04:00

21 lines
595 B
Python

import pika
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.exchange_declare(exchange='LyamzinaLogs', exchange_type='fanout')
result = channel.queue_declare(queue='', exclusive=True)
queue_name = result.method.queue
channel.queue_bind(exchange='LyamzinaLogs', queue=queue_name)
print(' [*] Ожидание сообщения.')
def callback(ch, method, properties, body):
print(f" [x] {body}")
channel.basic_consume(
queue=queue_name, on_message_callback=callback, auto_ack=True)
channel.start_consuming()