From 9fe0f954e67fdd5dbc2f854b3feec0b7cfca94af Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 29 Aug 2010 17:37:30 -0400 Subject: [PATCH] model started --- tablib/core.py | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/tablib/core.py b/tablib/core.py index 4c9b22e..0a1cc33 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -13,7 +13,26 @@ __license__ = 'MIT' __copyright__ = 'Copyright 2010 Kenneth Reitz' -def cheese(): +def importer(): """docstring for import""" - pass + + + +class Data(object): + """test""" + def __init__(self): + pass + self.headers = None + + + + + def add_row(self, index=None): + pass + + def del_row(self): + pass + + def save(self): + pass