Compare commits

...

6 Commits

Author SHA1 Message Date
Kenneth Reitz 9b235150cf v0.9.10 (packaging fix) 2011-06-23 06:46:24 -04:00
Kenneth Reitz 9f3e6eeaa1 oops 2011-06-23 05:37:09 -04:00
Kenneth Reitz 51728f954f Merge codeplane.com:kennethreitz/tablib into develop 2011-06-22 13:34:22 -04:00
Kenneth Reitz 2949b7c656 A change. 2011-06-22 13:27:24 -04:00
Kenneth Reitz 07d243bbc9 testing GitHub for Mac 2011-06-22 13:16:09 -04:00
Kenneth Reitz bf3484e606 release date 2011-06-21 23:04:42 -04:00
6 changed files with 34 additions and 7 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
History
-------
0.9.9 (?)
+++++++++
0.9.9 (2011-06-21)
++++++++++++++++++
* Dataset API Changes
* ``stack_rows`` => ``stack``, ``stack_columns`` => ``stack_cols``
+6
View File
@@ -462,3 +462,9 @@ a:hover tt {
background-color: #ccc;
-webkit-border-radius: 3px;
}
/* misc. */
.revsys-inline {
display: none!important;
}
+8 -1
View File
@@ -12,6 +12,13 @@ except ImportError:
from distutils.core import setup, find_packages
packages = find_packages(exclude=('docs',))
if sys.version_info[:2] < (3,0):
packages = [p for p in packages if '3' not in p]
else:
packages = [p for p in packages if '2' not in p]
if sys.argv[-1] == 'publish':
os.system("python setup.py sdist upload")
sys.exit()
@@ -45,7 +52,7 @@ setup(
author='Kenneth Reitz',
author_email='me@kennethreitz.com',
url='http://tablib.org',
packages=find_packages(exclude=('docs',)),
packages=packages,
license='MIT',
classifiers=(
'Development Status :: 5 - Production/Stable',
+1 -2
View File
@@ -1,5 +1,4 @@
""" Tablib.
"""
""" Tablib. """
from tablib.core import (
Databook, Dataset, detect, import_set,
+2 -2
View File
@@ -18,8 +18,8 @@ from tablib.compat import OrderedDict
__title__ = 'tablib'
__version__ = '0.9.9'
__build__ = 0x000909
__version__ = '0.9.10'
__build__ = 0x000910
__author__ = 'Kenneth Reitz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2011 Kenneth Reitz'
+15
View File
@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
import tablib
d = tablib.Dataset()
with open('/Users/kreitz/Desktop/test.json') as f:
d.json = f.read()
# del d[900:]
# print d.height
print len(d.ods)