0001# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
0002# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
0003"""
0004The httpencode package exports these for getting formatters:
0005
0006``get_format(mimetype, [output])``
0007
0008Exceptions:
0009
0010* NoFormatError
0011
0012Also these functions are exported for doing requests:
0013
0014* ``GET``
0015* ``POST``
0016* ``PUT``
0017* ``DELETE``
0018"""
0019
0020from httpencode.registry import get_format, NoFormatError
0021from httpencode.http import HTTP
0022
0023from httpencode.api import parse_request, parse_response,        Responder