mirror of
https://github.com/kennethreitz/python-github3.git
synced 2026-06-05 23:10:17 +00:00
30 lines
357 B
Python
30 lines
357 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
github3.core
|
|
~~~~~~~~~~~~
|
|
|
|
This module contains the core GitHub 3 interface.
|
|
|
|
"""
|
|
|
|
|
|
from .api import API_URL
|
|
|
|
|
|
|
|
class GitHub(object):
|
|
"""Central GitHub object."""
|
|
|
|
ratelimit = None
|
|
= None
|
|
|
|
def __init__(self, apiurl=API_URL):
|
|
pass
|
|
|
|
def login(self):
|
|
pass
|
|
|
|
|
|
# Default instance
|
|
github = GitHub() |