19 lines
496 B
Python
19 lines
496 B
Python
|
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()
|