2023-12-16 20:09:40 +04:00
|
|
|
import pika
|
|
|
|
import time
|
|
|
|
import random
|
|
|
|
|
2023-12-16 21:04:41 +04:00
|
|
|
collection = ["the employment document", "The document is agreed", "Signatures are provided", "the employee is accepted"]
|
2023-12-16 20:09:40 +04:00
|
|
|
|
|
|
|
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()
|