Files
requests3/requests/core.py
T
Kenneth Reitz 111336459e perfection.
2011-09-26 00:01:53 -04:00

31 lines
559 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.2 (dev)'
__build__ = 0x000602
__author__ = 'Kenneth Reitz'
__license__ = 'ISC'
__copyright__ = 'Copyright 2011 Kenneth Reitz'
import logging
logging.basicConfig()
from api import *
from exceptions import *
from models import Request, Response
from sessions import session
from status_codes import codes
import utils