mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 23:10:16 +00:00
dcebab4c35
I ran the pep8 checker (version 0.6.1) on the code base and tried to clean up as many pep8 errors as I could. Everything except line-width errors are gone (I was worried about messing up the documentor since I haven't fiddled with it).
30 lines
561 B
Python
30 lines
561 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'
|
|
|
|
|
|
from models import HTTPError, Request, Response
|
|
from api import *
|
|
from exceptions import *
|
|
from sessions import session
|
|
from status_codes import codes
|
|
from config import settings
|
|
|
|
import utils
|