Files
requests3/requests/core.py
T
Kenneth Reitz cc350d54b7 v0.6.3
2011-10-13 21:13:46 -04:00

27 lines
521 B
Python

# -*- coding: utf-8 -*-
"""
requests.core
~~~~~~~~~~~~~
This module implements the main Requests system.
:copyright: (c) 2011 by Kenneth Reitz.
:license: ISC, see LICENSE for more details.
"""
__title__ = 'requests'
__version__ = '0.6.3'
__build__ = 0x000603
__author__ = 'Kenneth Reitz'
__license__ = 'ISC'
__copyright__ = 'Copyright 2011 Kenneth Reitz'
from models import HTTPError
from api import *
from exceptions import *
from sessions import session
from status_codes import codes
from config import settings