We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5efd35a commit 0189affCopy full SHA for 0189aff
README.rst
@@ -7,12 +7,19 @@ This is going to be awesome.
7
8
9
10
-Dependencies
11
-------------
+Usage
+-----
12
+
13
+::
14
+ from github3 import github
15
16
+ github.login('username', 'password')
17
+ # optional
18
19
+ github.
20
21
22
-- Requests
-- AnyJSON
-- OrderedDict
23
24
25
Installation
github3/core.py
@@ -9,8 +9,22 @@
"""
+from .api import API_URL
class GitHub(object):
- pass
+ """Central GitHub object."""
+ ratelimit = None
+ = None
+ def __init__(self, apiurl=API_URL):
+ pass
+ def login(self):
26
27
28
- def __init__(self):
29
+# Default instance
30
+github = GitHub()
0 commit comments