This commit is contained in:
2016-02-07 10:53:25 -05:00
parent e51c4faec7
commit d6a7832e60
4 changed files with 12 additions and 9 deletions
+6 -1
View File
@@ -11,13 +11,18 @@ History
**Improvements**
- New import/export interface (``Dataset.export()``, ``Dataset.import_()``).
- New import/export interface (``Dataset.export()``, ``Dataset.load()``).
- CSV custom delimiter support (``Dataset.export('csv', delimiter='$')``).
- Adding ability to remove duplicates to all rows in a dataset (``Dataset.remove_duplicates()``).
- Added a mechanism to avoid ``datetime.datetime`` issues when serializing data.
- New ``detect_format()`` function (mostly for internal use).
- Update the vendored unicodecsv to fix ``None`` handling.
- Only freeze the headers row, not the headers columns (xls).
**Breaking Changes**
- ``detect()`` function removed.
**Bugfixes**
- Fix XLSX import.
+1 -1
View File
@@ -1,4 +1,4 @@
Copyright 2011 Kenneth Reitz
Copyright 2016 Kenneth Reitz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
+1 -3
View File
@@ -23,6 +23,7 @@ Output formats supported:
- YAML (Sets + Books)
- HTML (Sets)
- TSV (Sets)
- OSD (Sets)
- CSV (Sets)
- DBF (Sets)
@@ -141,9 +142,6 @@ To install tablib, simply: ::
$ pip install tablib
Or, if you absolutely must: ::
$ easy_install tablib
Contribute
----------
+4 -4
View File
@@ -5,7 +5,7 @@
This module implements the central Tablib objects.
:copyright: (c) 2014 by Kenneth Reitz.
:copyright: (c) 2016 by Kenneth Reitz.
:license: MIT, see LICENSE for more details.
"""
@@ -18,11 +18,11 @@ from tablib.compat import OrderedDict, unicode
__title__ = 'tablib'
__version__ = '0.10.0'
__build__ = 0x001000
__version__ = '0.11.0'
__build__ = 0x001100
__author__ = 'Kenneth Reitz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2014 Kenneth Reitz'
__copyright__ = 'Copyright 2016 Kenneth Reitz'
__docformat__ = 'restructuredtext'