We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b59f01 commit fd19f0bCopy full SHA for fd19f0b
github3/__init__.py
@@ -0,0 +1,3 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+from core import *
github3/core.py
@@ -0,0 +1,22 @@
+"""
4
+github3.core
5
+~~~~~~~~~~~~
6
7
+This module provides the entrance point for the GitHub3 module.
8
9
10
+__version__ = '0.0.0'
11
+__license__ = 'MIT'
12
+__author__ = 'Kenneth Reitz'
13
14
15
+def no_auth():
16
+ """Returns an un-authenticated Github object."""
17
+ pass
18
19
20
+def basic_auth():
21
+ """Returns an authenticated Github object, via HTTP Basic."""
22
0 commit comments