aboutsummaryrefslogtreecommitdiffstats
path: root/github3/models.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-04-13 19:13:19 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-04-13 19:13:19 -0400
commit82c1cf1acfd86d49c025ca30c16463e19f883fbe (patch)
treee558b4609c47429e504e2fe0c2256d656bef0677 /github3/models.py
parentgrmmm (diff)
downloadpython-github3-82c1cf1acfd86d49c025ca30c16463e19f883fbe.tar.xz
python-github3-82c1cf1acfd86d49c025ca30c16463e19f883fbe.zip
basic models
Diffstat (limited to 'github3/models.py')
-rw-r--r--github3/models.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/github3/models.py b/github3/models.py
index e69de29..c049aba 100644
--- a/github3/models.py
+++ b/github3/models.py
@@ -0,0 +1,34 @@
+# -*- coding: utf-8 -*-
+
+"""
+github3.models
+~~~~~~~~~~~~~~
+
+This module provides the GitHub3 object models.
+
+"""
+
+
+
+class Repo(object):
+ """GitHub Repository."""
+ pass
+
+
+
+class Gist(object):
+ """GitHub Gist.
+
+ gist.files['filename.py']
+ """
+
+ def __init__(self):
+ pass
+
+
+
+class GistComment(object):
+ """GitHub GistComment."""
+
+ def __init__(self):
+ pass \ No newline at end of file