distributed-computing/tasks/plaksina-av/lab_4/pythontasks/maintask/Publisher.py
2023-12-16 01:46:18 +04:00

19 lines
534 B
Python

import pika
import time
import random
collection = ["Indicator Successfully Calculated", "DVI Is Not Provided For This Specialty", "The Student Went To The Academy"]
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
channel = connection.channel()
channel.exchange_declare(exchange='Agreements', exchange_type='fanout')
while True:
message = f"Message: {random.choice(collection)}"
channel.basic_publish(exchange='Agreements', routing_key='', body=message)
time.sleep(1)
connection.close()