From 82c1cf1acfd86d49c025ca30c16463e19f883fbe Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 13 Apr 2011 19:13:19 -0400 Subject: basic models --- github3/models.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'github3') 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 -- cgit v1.2.3-59-g8ed1b