mirror of
https://github.com/kennethreitz/python-github3.git
synced 2026-06-05 23:10:17 +00:00
27 lines
300 B
Python
27 lines
300 B
Python
# -*- 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 |