19 lines
523 B
Python
19 lines
523 B
Python
import pika
|
|
import time
|
|
import random
|
|
|
|
collection = ["Application for Travel Agency", "Buying tickets", "Execution of the agreement", "Check-into a hotel"]
|
|
|
|
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() |