mirror of
https://github.com/kennethreitz/python-github3.git
synced 2026-06-05 23:10:17 +00:00
core
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
github3.core
|
||||
~~~~~~~~~~~~
|
||||
|
||||
This module provides the entrance point for the GitHub3 module.
|
||||
"""
|
||||
|
||||
__version__ = '0.0.0'
|
||||
__license__ = 'MIT'
|
||||
__author__ = 'Kenneth Reitz'
|
||||
|
||||
|
||||
def no_auth():
|
||||
"""Returns an un-authenticated Github object."""
|
||||
pass
|
||||
|
||||
|
||||
def basic_auth():
|
||||
"""Returns an authenticated Github object, via HTTP Basic."""
|
||||
pass
|
||||
Reference in New Issue
Block a user