Skip to main content

HTTP Client Mixin for Tornado RequestHandlers

Project description

sprockets.mixins.http
=====================
HTTP Client Mixin for Tornado RequestHandlers.

|Version| |Travis| |CodeCov| |Docs|

Installation
------------
``sprockets.mixins.http`` is available on the
`Python Package Index <https://pypi.python.org/pypi/sprockets.mixins.http>`_
and can be installed via ``pip`` or ``easy_install``:

.. code-block:: bash

pip install sprockets.mixins.http

If you would like to use :class:`~tornado.curl_httpclient.CurlAsyncHTTPClient`,
you can install `pycurl <http://pycurl.io>`_ with:

.. code-block:: bash

pip install sprockets.mixins.http[curl]

Documentation
-------------
https://pythonhosted.org/sprockets.mixins.http

Requirements
------------
- `tornado <https://tornadoweb.org>`_ >=4.2.0,<5

Example
-------

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

.. code:: python

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:

.. code:: python

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()

License
-------
``sprockets.mixins.http`` is released under the `3-Clause BSD license <https://github.com/sprockets/sprockets.mixins.http/blob/master/LICENSE>`_.

.. |Version| image:: https://badge.fury.io/py/sprockets.mixins.http.svg?
:target: http://badge.fury.io/py/sprockets.mixins.http

.. |Travis| image:: https://travis-ci.org/sprockets/sprockets.mixins.http.svg?branch=master
:target: https://travis-ci.org/sprockets/sprockets.mixins.http

.. |CodeCov| image:: http://codecov.io/github/sprockets/sprockets.mixins.http/coverage.svg?branch=master
:target: https://codecov.io/github/sprockets/sprockets.mixins.http?branch=master

.. |Docs| image:: https://img.shields.io/badge/docs-pythonhosted-green.svg
:target: https://pythonhosted.com/sprockets.mixins.http

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.1.tar.gz (7.0 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.1-py2.py3-none-any.whl (8.9 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

File hashes

Hashes for sprockets.mixins.http-1.0.1.tar.gz
Algorithm Hash digest
SHA256 e526272e69e4a799ac251a52695679c5d5499cb21e492c37bf208339d194c834
MD5 6dc7c3cd907bb589970894cfa841be8e
BLAKE2b-256 5674674a2598df64ea23741265e66ff9332e829779ce5b82d8616b36284ee192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sprockets.mixins.http-1.0.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 416814277466851a3a0a7f99268b8c4e5716effdb18c881cf3554cdf78a14ef2
MD5 f969a964e303e077f589e054b141f5b5
BLAKE2b-256 9d884241267c3d9766108dd3ad63444f551f95a613bfd0935109684d6161835b

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