distributed-computing/tasks/grenaderova-aa/lab_4/python4Lab/MainTask/Publisher.py
2023-12-18 16:32:53 +04:00

19 lines
474 B
Python

import pika
import time
import random
collection = ["Buildings", "Streets", "Parks", "Transport", "Lighting"]
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.exchange_declare(exchange='Entities', exchange_type='fanout')
while True:
message = f"Message: {random.choice(collection)}"
channel.basic_publish(exchange='Entities', routing_key='', body=message)
time.sleep(1)
connection.close()