2013-03-16 15:50:31 +00:00
|
|
|
``tornado.httpclient`` --- Asynchronous HTTP client
|
2011-06-11 21:48:46 +00:00
|
|
|
===================================================
|
2011-06-09 06:58:58 +00:00
|
|
|
|
|
|
|
.. automodule:: tornado.httpclient
|
2011-06-17 07:16:40 +00:00
|
|
|
|
|
|
|
HTTP client interfaces
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
.. autoclass:: HTTPClient
|
|
|
|
:members:
|
|
|
|
|
|
|
|
.. autoclass:: AsyncHTTPClient
|
|
|
|
:members:
|
|
|
|
|
|
|
|
Request objects
|
|
|
|
---------------
|
|
|
|
.. autoclass:: HTTPRequest
|
|
|
|
:members:
|
|
|
|
|
|
|
|
Response objects
|
|
|
|
----------------
|
|
|
|
.. autoclass:: HTTPResponse
|
|
|
|
:members:
|
|
|
|
|
|
|
|
Exceptions
|
|
|
|
----------
|
|
|
|
.. autoexception:: HTTPError
|
|
|
|
:members:
|
|
|
|
|
|
|
|
Command-line interface
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
This module provides a simple command-line interface to fetch a url
|
|
|
|
using Tornado's HTTP client. Example usage::
|
|
|
|
|
|
|
|
# Fetch the url and print its body
|
|
|
|
python -m tornado.httpclient http://www.google.com
|
|
|
|
|
|
|
|
# Just print the headers
|
|
|
|
python -m tornado.httpclient --print_headers --print_body=false http://www.google.com
|