diff options
author | 2011-06-23 02:59:49 -0400 | |
---|---|---|
committer | 2011-06-23 02:59:49 -0400 | |
commit | ecad4a9e256a10208b5e97d66f88416fecdf9cb3 (patch) | |
tree | 9c8922645118812cb2c3dd7bce57b46cb78f6a66 /github3/core.py | |
parent | clean slate (diff) | |
download | python-github3-ecad4a9e256a10208b5e97d66f88416fecdf9cb3.tar.xz python-github3-ecad4a9e256a10208b5e97d66f88416fecdf9cb3.zip |
updates
Diffstat (limited to 'github3/core.py')
-rw-r--r-- | github3/core.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/github3/core.py b/github3/core.py index fcee886..4256b4a 100644 --- a/github3/core.py +++ b/github3/core.py @@ -8,3 +8,20 @@ This module contains the core GitHub3 interface. """ +import requests + +from .api import Github, settings + + +__version__ = '0.0.1' +__license__ = 'ISC' +__author__ = 'Kenneth Reitz' + + + +def basic(username, password): + pass + + +def anon(): + pass
\ No newline at end of file |