Skip to main content

Tornado IOLoop Backed Concurrent Futures

Project description

build-status coverage pypi

Run Tornado Coroutines from Synchronous Python.

from threadloop import ThreadLoop
from tornado import gen

@gen.coroutine
def coroutine(greeting="Goodbye"):
    yield gen.sleep(1)
    raise gen.Return("%s World" % greeting)

with ThreadLoop() as threadloop:
    future = threadloop.submit(coroutine, "Hello")

    print future.result() # Hello World

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

threadloop-1.0.2.tar.gz (4.9 kB view hashes)

Uploaded Source

Built Distribution

threadloop-1.0.2-py2-none-any.whl (6.2 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page