Skip to content

Commit fd19f0b

Browse files
author
Kenneth Reitz
committed
core
1 parent 5b59f01 commit fd19f0b

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

github3/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from core import *

github3/core.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
3+
"""
4+
github3.core
5+
~~~~~~~~~~~~
6+
7+
This module provides the entrance point for the GitHub3 module.
8+
"""
9+
10+
__version__ = '0.0.0'
11+
__license__ = 'MIT'
12+
__author__ = 'Kenneth Reitz'
13+
14+
15+
def no_auth():
16+
"""Returns an un-authenticated Github object."""
17+
pass
18+
19+
20+
def basic_auth():
21+
"""Returns an authenticated Github object, via HTTP Basic."""
22+
pass

0 commit comments

Comments
 (0)