diff options
author | 2011-04-13 19:13:19 -0400 | |
---|---|---|
committer | 2011-04-13 19:13:19 -0400 | |
commit | 82c1cf1acfd86d49c025ca30c16463e19f883fbe (patch) | |
tree | e558b4609c47429e504e2fe0c2256d656bef0677 /github3/models.py | |
parent | grmmm (diff) | |
download | python-github3-82c1cf1acfd86d49c025ca30c16463e19f883fbe.tar.xz python-github3-82c1cf1acfd86d49c025ca30c16463e19f883fbe.zip |
basic models
Diffstat (limited to 'github3/models.py')
-rw-r--r-- | github3/models.py | 34 |
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 |