aboutsummaryrefslogtreecommitdiffstats
path: root/github3/core.py
blob: 4256b4a78f82f1b51f01549eb02a798abd041693 (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
25
26
27
# -*- 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