diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2010-09-25 04:43:39 -0400 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2010-09-25 04:43:39 -0400 |
| commit | 579dbf0cc0686d568cb1386ccbbd81837c90e49b (patch) | |
| tree | 5362c7a174ae75694be35320246443c9558a141b /tablib | |
| parent | fbabb430ca7159cf0570193704367234e4c2b90b (diff) | |
| download | tablib-579dbf0cc0686d568cb1386ccbbd81837c90e49b.tar.gz | |
Added docstring.
Removed unneeded import.
Diffstat (limited to 'tablib')
| -rw-r--r-- | tablib/core.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tablib/core.py b/tablib/core.py index 0167c34..fae4547 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -1,21 +1,17 @@ # -*- coding: utf-8 -*- -# _____ ______ ______ _________ -# __ /_______ ____ /_ ___ /_ _____ ______ / -# _ __/_ __ `/__ __ \__ __ \_ _ \_ __ / -# / /_ / /_/ / _ /_/ /_ /_/ // __// /_/ / -# \__/ \__,_/ /_.___/ /_.___/ \___/ \__,_/ +""" Tablib - Core Library +""" import csv import cStringIO -import random import simplejson as json import xlwt import yaml -from helpers import * +from helpers import Struct # __all__ = ['Dataset', 'DataBook'] |
