diff options
author | 2011-07-23 00:27:20 -0400 | |
---|---|---|
committer | 2011-07-23 00:27:20 -0400 | |
commit | fd19f0b5ed2983920382277d886806e35280ef39 (patch) | |
tree | 6fc84dd9d1c30a630824545ea20668331b331de9 /github3/core.py | |
parent | yayy (diff) | |
download | python-github3-fd19f0b5ed2983920382277d886806e35280ef39.tar.xz python-github3-fd19f0b5ed2983920382277d886806e35280ef39.zip |
core
Diffstat (limited to 'github3/core.py')
-rw-r--r-- | github3/core.py | 22 |
1 files changed, 22 insertions, 0 deletions
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 |