diff options
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 |