Files
python-github3/github3/core.py
T
Kenneth Reitz 36bbb3980d github3.core
2011-12-26 22:47:06 -05:00

21 lines
321 B
Python

# -*- coding: utf-8 -*-
"""
github3.core
~~~~~~~~~~~~~
This module provides the base entrypoint for github3.
"""
from .api import Github
def from_key(username, password):
"""Returns an authenticated Github instance, via API Key."""
gh = Github()
# Login.
gh.login(username, password)
return gh