mirror of https://github.com/celery/kombu.git
10 lines
315 B
Python
10 lines
315 B
Python
from kombu import Connection
|
|
import datetime
|
|
|
|
with Connection('amqp://guest:guest@localhost:5672//') as conn:
|
|
simple_queue = conn.SimpleQueue('simple_queue')
|
|
message = 'helloword, sent at %s' % datetime.datetime.today()
|
|
simple_queue.put(message)
|
|
print('Sent: %s' % message)
|
|
simple_queue.close()
|