Files
requests3/requests/__init__.py
T
Kenneth Reitz 77909f1d49 v0.6.7
2011-10-22 18:07:00 -04:00

35 lines
720 B
Python

# -*- coding: utf-8 -*-
# __
# /__) _ _ _ _ _/ _
# / ( (- (/ (/ (- _) / _)
# /
"""
requests
~~~~~~~~
:copyright: (c) 2011 by Kenneth Reitz.
:license: ISC, see LICENSE for more details.
"""
__title__ = 'requests'
__version__ = '0.6.7'
__build__ = 0x000607
__author__ = 'Kenneth Reitz'
__license__ = 'ISC'
__copyright__ = 'Copyright 2011 Kenneth Reitz'
from . import utils
from .models import HTTPError, Request, Response
from .api import request, get, head, post, patch, put, delete
from .sessions import session
from .status_codes import codes
from .config import settings
from .exceptions import (
RequestException, AuthenticationError, Timeout, URLRequired,
TooManyRedirects
)