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.
Installation
sprockets.mixins.http is available on the Python Package Index and can be installed via pip:
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
Requirements
Example
This examples demonstrates the most basic usage of sprockets.mixins.http
from tornado import ioloop, web
from sprockets.mixins import http
class RequestHandler(http.HTTPClientMixin, web.RequestHandler):
async def get(self, *args, **kwargs):
response = await self.http_fetch('https://api.github.com')
if not response.ok:
self.set_status(response.code)
self.write(response.body)
if __name__ == "__main__":
app = web.Application([(r'/', RequestHandler)])
app.listen(8000)
ioloop.IOLoop.current().start()
As with Tornado, to use the curl client which has numerous benefits:
from tornado import httpclient, ioloop, web
from sprockets.mixins import http
httpclient.AsyncHTTPClient.configure(
'tornado.curl_httpclient.CurlAsyncHTTPClient')
class RequestHandler(http.HTTPClientMixin, web.RequestHandler):
async def get(self, *args, **kwargs):
response = await self.http_fetch('https://api.github.com')
if not response.ok:
self.set_status(response.code)
self.write(response.body)
if __name__ == "__main__":
app = web.Application([(r'/', RequestHandler)])
app.listen(8000)
ioloop.IOLoop.current().start()
Error Response Body
For errors, i.e. a response with HTTP status code in the 400 range…
The HTTPResponse object’s body is reduced down to just the error message. That is this mixin’s default behavior.
For a JSON response body with Problem Details (RFC 7807), you may want more than just the error message. To gain access to the complete, deserialized response body; a class that uses this mixin can set:
self.simplify_error_response = False
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sprockets.mixins.http-2.6.0.tar.gz
.
File metadata
- Download URL: sprockets.mixins.http-2.6.0.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d06fdf6f627e6daaf7d14e1a37c7d52c440f0fb63a59fb2bb92180963b23bd81 |
|
MD5 | e990034e9f93bf7316ec568b244e67d6 |
|
BLAKE2b-256 | e62f01fd218e4948aa5f7def60e00d423562314cdaf2d4e3bdfbbc0abbde02f0 |
File details
Details for the file sprockets.mixins.http-2.6.0-py2.py3-none-any.whl
.
File metadata
- Download URL: sprockets.mixins.http-2.6.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0b8550f49e570d25bb9339c788efa3c3f307e23ca0cd35730b654211134351f |
|
MD5 | 975e3789256259c651d49a1afbc494f1 |
|
BLAKE2b-256 | 5c32b4ea9e1f356146e54b56bf14ff8d9a818b98e0c30b20db9f79747bff1a61 |