# -*- coding: utf-8 -*- """ github3.core ~~~~~~~~~~~~ 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