aboutsummaryrefslogtreecommitdiffstats
path: root/github3/core.py
blob: 488f81d099e0282e4e7f713ef7e23af64f00065c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-

"""
github3.core
~~~~~~~~~~~~

This module provides the entrance point for the GitHub3 module.
"""

__version__ = '0.0.0'
__license__ = 'MIT'
__author__ = 'Kenneth Reitz'

from .api import Github, settings


def no_auth():
    """Returns an un-authenticated Github object."""
    pass


def basic_auth():
    """Returns an authenticated Github object, via HTTP Basic."""
    pass