mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
model started
This commit is contained in:
+21
-2
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user