Files
Kenneth Reitz b0a5f413f6 login
2011-12-26 23:28:43 -05:00

21 lines
318 B
Python

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