aboutsummaryrefslogtreecommitdiff
path: root/requests/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'requests/core.py')
-rw-r--r--requests/core.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/requests/core.py b/requests/core.py
new file mode 100644
index 0000000..7f3d723
--- /dev/null
+++ b/requests/core.py
@@ -0,0 +1,25 @@
+# -*- 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.4.1'
+__build__ = 0x000401
+__author__ = 'Kenneth Reitz'
+__license__ = 'ISC'
+__copyright__ = 'Copyright 2011 Kenneth Reitz'
+
+
+from models import HTTPError, auth_manager
+from api import *
+from exceptions import *
+from config import settings \ No newline at end of file