From fd19f0b5ed2983920382277d886806e35280ef39 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 23 Jul 2011 00:27:20 -0400 Subject: core --- github3/__init__.py | 3 +++ github3/core.py | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) (limited to 'github3') diff --git a/github3/__init__.py b/github3/__init__.py index e69de29..c2fdbad 100644 --- a/github3/__init__.py +++ b/github3/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from core import * \ No newline at end of file diff --git a/github3/core.py b/github3/core.py index e69de29..6701fe1 100644 --- a/github3/core.py +++ b/github3/core.py @@ -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 \ No newline at end of file -- cgit v1.2.3-59-g8ed1b