This commit is contained in:
Kenneth Reitz
2011-07-23 00:27:20 -04:00
parent 5b59f0103e
commit fd19f0b5ed
2 changed files with 25 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from core import *
+22
View File
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
"""
github3.core
~~~~~~~~~~~~
This module provides the entrance point for the GitHub3 module.
"""
__version__ = '0.0.0'
__license__ = 'MIT'
__author__ = 'Kenneth Reitz'
def no_auth():
"""Returns an un-authenticated Github object."""
pass
def basic_auth():
"""Returns an authenticated Github object, via HTTP Basic."""
pass