HTTP Client Mixin for Tornado RequestHandlers
Project description
HTTP Client Mixin for Tornado RequestHandlers.
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
Requirements
tornado >=4.2.0,<5
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()
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sprockets.mixins.http-1.0.2.tar.gz.
File metadata
- Download URL: sprockets.mixins.http-1.0.2.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c324fa973c6a4a6b352de98d0653438b8d7f1011159aaf922ac3652a40603ade
|
|
| MD5 |
ee7e0c2659ac993dc4f6a7fa572b651b
|
|
| BLAKE2b-256 |
9c8e8e534ebd40447d1df289de6c9f891b9142006524077527f2bd0f04f0c5a1
|
File details
Details for the file sprockets.mixins.http-1.0.2-py2.py3-none-any.whl.
File metadata
- Download URL: sprockets.mixins.http-1.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a096d5874ae4272bb0e2faa79009faea9a2252add1f94e5b882433782728c2d2
|
|
| MD5 |
ab06397892934eda8ac7fe550cb6da1d
|
|
| BLAKE2b-256 |
ad308f4942a67a478d7b691c4cc68f4b32f09499af20a08f15c54598744d3e8a
|