Skip to main content

An easy way to seamlessly use Greenlet with Tornado

Project description

Greenlet-Tornado
================

An easy way to seamlessly use Greenlet with Tornado.
----------------------------------------------------

This allows you to write code as if it were synchronous, and not worry about callbacks at all.
You also don't have to use any special patterns, such as writing everything as a generator.

Overall this allows you to structure your program in a much more sensible, straightforward way.
It's also immensely helpful when porting synchronous code to Tornado.

Derived from this blog article:
<http://blog.joshhaas.com/2011/06/marrying-boto-to-tornado-greenlets-bring-them-together/>

Install
-------

pip install greenlet_tornado

Example Usage:
--------------

import tornado.web
from greenlet_tornado import greenlet_asynchronous, greenlet_fetch

class ExampleHandler(tornado.web.RequestHandler):
@greenlet_asynchronous
def get(self):
# ...
self.helper()
# ...
self.write("Hello World!")

def helper(self):
# Fetch something. greenlet_fetch() will block until the request is complete,
# but the tornado IOLoop can do other things in the meantime.
http_response = greenlet_fetch("http://www.mopub.com")
# ... Do something with the response ...

Run tests
---------

pip install -r requirements_tests.txt
nosetests -s --cover-branches --cover-erase --with-coverage --cover-inclusive --cover-package=greenlet_tornado --tests=tests --with-xunit

Project details


Download files

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

Source Distribution

greenlet_tornado-1.0.0.tar.gz (4.9 kB view details)

Uploaded Source

File details

Details for the file greenlet_tornado-1.0.0.tar.gz.

File metadata

File hashes

Hashes for greenlet_tornado-1.0.0.tar.gz
Algorithm Hash digest
SHA256 83b02e6ca96f637af3ef307abf3a37d15318d03867544b6cc7542b3ee7b48ca6
MD5 9a656668fb82e458af9be345702fb4dc
BLAKE2b-256 5ee21c4277f2102adaa584ec1a17b5813f2d8e8690a811ef3914511515801509

See more details on using hashes here.

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