Skip to main content

HTTP Client Mixin for Tornado RequestHandlers

Project description

HTTP Client Mixin for Tornado RequestHandlers. Automatically retries on errors, sleep when rate limited, and handles content encoding and decoding using MsgPack and JSON.

Version Travis CodeCov Docs

Installation

sprockets.mixins.http is available on the Python Package Index and can be installed via pip or easy_install:

pip install sprockets.mixins.http

If you would like to use tornado.curl_httpclient.CurlAsyncHTTPClient, you can install pycurl with:

pip install sprockets.mixins.http[curl]

Documentation

http://pythonhosted.org/sprockets.mixins.http/

Requirements

Example

This examples demonstrates the most basic usage of sprockets.mixins.http

from tornado import gen, ioloop, web
from sprockets.mixins import http


class RequestHandler(http.HTTPClientMixin, web.RequestHandler):

   @gen.coroutine
   def get(self, *args, **kwargs):
       response = yield self.http_fetch('https://api.github.com')
       if not response.ok:
           self.set_status(response.code)
       self.write(response.body)
       self.finish()


if __name__ == "__main__":
   app = web.Application([web.url(r'/', RequestHandler)])
   app.listen(8000)
   ioloop.IOLoop.current().start()

As with Tornado, to use the curl client which has numerous benefits:

from tornado import gen, httpclient, ioloop, web
from sprockets.mixins import http

httpclient.AsyncHTTPClient.configure(
    'tornado.curl_httpclient.CurlAsyncHTTPClient')


class RequestHandler(http.HTTPClientMixin, web.RequestHandler):

   @gen.coroutine
   def get(self, *args, **kwargs):
       response = yield self.http_fetch('https://api.github.com')
       if not response.ok:
           self.set_status(response.code)
       self.write(response.body)
       self.finish()


if __name__ == "__main__":
   app = web.Application([web.url(r'/', RequestHandler)])
   app.listen(8000)
   ioloop.IOLoop.current().start()

Environment Variables

HTTP_MAX_CLIENTS

An optional setting that specifies the maximum number of simultaneous asynchronous HTTP requests. If not specified, the default Tornado value of 10 will be used.

License

sprockets.mixins.http is released under the 3-Clause BSD license.

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

sprockets.mixins.http-1.0.6.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sprockets.mixins.http-1.0.6-py2.py3-none-any.whl (9.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file sprockets.mixins.http-1.0.6.tar.gz.

File metadata

File hashes

Hashes for sprockets.mixins.http-1.0.6.tar.gz
Algorithm Hash digest
SHA256 e33a7f2fa62562438397e96551a3f5f1c854e2424f7c5b1d386b651c16cb5879
MD5 447bf1ac1b687773682769ada5b9ab58
BLAKE2b-256 291127ae5870aa61fdd01a2bc860d9dfd27237af2c12324f182934b1e03d2f1a

See more details on using hashes here.

File details

Details for the file sprockets.mixins.http-1.0.6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for sprockets.mixins.http-1.0.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ea0aee219ee969d9e1e2421fdbc75ddfe6b67673902a6a56d15a6b766f8237f9
MD5 460c12a8122243ba94113688e8a74f35
BLAKE2b-256 93f36b3580d9f0c0ffe9f9e5a2e1f3100bea65efeac0839b38f167a76a4cb5ed

See more details on using hashes here.

Supported by

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