distributed-computing/tasks/lyamzina-ma/lab_4/python4Lab/Lab4MainTask/Publisher.py

19 lines
496 B
Python
Raw Normal View History

2023-12-18 16:41:19 +04:00
import pika
import time
import random
collection = ["Types of events", "Event venues", "Event management services", "Event participants"]
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.exchange_declare(exchange='Event', exchange_type='fanout')
while True:
message = f"Message: {random.choice(collection)}"
channel.basic_publish(exchange='Event', routing_key='', body=message)
time.sleep(1)
connection.close()