Skip to content

Instantly share code, notes, and snippets.

@desertkun
desertkun / amqp.py
Last active July 23, 2016 02:46 — forked from sjlongland/amqp.py
Tornado Coroutine interface to AMQP (pika)
#!/usr/bin/python
import datetime
import logging
import threading
import weakref
from tornado.gen import coroutine, Return
import tornado