summaryrefslogtreecommitdiff
path: root/tablib
Commit message (Collapse)AuthorAgeFilesLines
* Refs #108 - Test and improve format autodetectionClaude Paroz2019-10-045-11/+18
| | | | Autodetection was added for the odf format.
* Fixed #373 - Properly detect xlsx formatClaude Paroz2019-10-043-3/+7
|
* Fixes #314 - Delegate type coercion to openpyxlClaude Paroz2019-10-041-9/+9
| | | | Thanks Cristiano Lopes for the initial patch.
* Fixes #274 - Fix Databook.load() params orderingClaude Paroz2019-10-041-1/+1
|
* Refs #322 - Open dbf file in binary mode in docsClaude Paroz2019-10-031-1/+1
|
* io.BytesIO is also available in Python 2.7Claude Paroz2019-10-036-25/+10
|
* Made blank lines PEP-8 compatibleClaude Paroz2019-10-035-55/+4
|
* Refs #273 - Replaced vendored markup lib by dependencyClaude Paroz2019-10-034-971/+4
|
* Avoid DeprecationWarning due to invalid escape in docstringRan Benita2019-10-031-5/+5
| | | | Will become a SyntaxError in Python 3.8: https://bugs.python.org/issue32912
* Added stream to CSVAnthony Monthe2019-03-301-2/+9
|
* Open xlsx workbooks in read-only modeClaude Paroz2019-03-091-2/+2
| | | | Refs #316
* release: 0.13.0v0.13.0Timo Furrer2019-03-081-1/+1
|
* Merge pull request #351 from jdufresne/isinstanceTimo Furrer2019-03-032-4/+4
|\ | | | | Merge multiple isinstance() calls to one
| * Merge multiple isinstance() calls to oneJon Dufresne2019-03-022-4/+4
| |
* | Trim trailing white space throughout the projectJon Dufresne2019-03-027-29/+23
|/ | | | | | Many editors clean up trailing white space on save. By removing it all in one go, it helps keep future diffs cleaner by avoiding spurious white space changes on unrelated lines.
* Merge branch 'master' into bugfix/invalid-ascii-csvBruno Alla2019-03-0212-165/+444
|\ | | | | | | | | | | | | # Conflicts: # setup.py # tablib/compat.py # test_tablib.py
| * Merge pull request #333 from hudgeon/masterTimo Furrer2019-03-022-3/+15
| |\ | | | | | | Updated xlsx format to remove reference to openpyxl's deprecated get_active_worksheet
| | * Add instructions for handling csv line endings in Windows in Python 3DougHudgeon2018-06-261-2/+14
| | |
| | * Updated xlsx format to use openpyxl's .active propertyDougHudgeon2018-06-251-1/+1
| | |
| * | Merge pull request #348 from mloesch/jiraTimo Furrer2019-03-023-2/+48
| |\ \ | | | | | | | | Add Jira table export
| | * | Add Jira table exportMathias Loesch2019-01-233-2/+48
| | | |
| * | | Merge pull request #338 from lepuchi/hotfix/csv-new-lineTimo Furrer2019-03-021-1/+1
| |\ \ \ | | | | | | | | | | Handle case where there is an empty line in CSV
| | * | | only add row if it existslepuchi2018-10-021-1/+1
| | |/ /
| * | | Merge pull request #343 from jdufresne/odParth Shandilya2019-03-023-135/+2
| |\ \ \ | | | | | | | | | | Remove vendored ordereddict package
| | * | | Remove vendored ordereddict packageJon Dufresne2019-01-013-135/+2
| | |/ / | | | | | | | | | | | | | | | | Now that Python 2.6 support has been dropped, can remove the vendored ordereddict package. Use the stdlib collections.OrderedDict instead.
| * | | Merge pull request #339 from thombashi/replace_deprecated_methodParth Shandilya2019-03-021-1/+1
| |\ \ \ | | | | | | | | | | Replace a deprecated method call
| | * | | Replace a deprecated method callTsuyoshi Hombashi2018-10-061-1/+1
| | |/ / | | | | | | | | | | | | Workbook.remove_sheet method deprecated since openpyxl 2.4.0
| * | | Remove unused compat entriesJon Dufresne2019-01-011-11/+5
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Organize both the Python2 & Python3 sections in the same order so they are easier to compare. Removed: - basestring - ifilter - bytes
| * | ujson presence no longer breaks tablib (resolves #297) (#311)Maciej "RooTer" UrbaƄski2018-09-121-4/+1
| | |
| * | Fix: Circular reference detected error (#332)Bruno Soares2018-09-121-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | * Rename function name * Add uuid handler on json dumps * Add myself to authors
| * | reStructuredText (#336)Norman Hooper2018-09-124-2/+303
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * median for Python 2 * More compat * Support reStructuredText * Tests
| * | fix(): remove openpyxl warning by properly accessing cells (#296)Gregory Bataille2018-09-121-1/+1
| |/
| * next versionv0.12.1Kenneth Reitz2017-09-011-2/+2
| |
| * Raise NotImplementedError if pandas is not installedRyan Castner2017-09-011-1/+10
| |
| * drop 2.6Kenneth Reitz2017-08-271-2/+2
| |
| * Adding initial DataFrames SupportJason Myers2017-08-263-1/+54
| | | | | | | | Signed-off-by: Jason Myers <jason@jasonamyers.com>
| * v0.11.5Kenneth Reitz2017-06-131-2/+2
| |
| * use safe loadKenneth Reitz2017-06-131-1/+1
| |
* | Fix unicode encode errors on Python 2 -- Fixes #215Bruno Alla2017-05-024-12/+7
|/ | | | | | | | | | | | | | Switch csv library to backports.csv as the implementation is closer to the python 3 one. Add a test case covering the problem. Run tests with unicode_literals from future Fix unicode encode errors with unicode characters - Use `backports.csv` instead of `unicodecsv` - Use StringIO instead of cStringIO - Clean-up some Python 2 specific code
* Replaced vendored odfpy by a dependency (#280)Claude Paroz2017-02-2670-33792/+3
| | | Refs #273.
* Replaced vendored omnijson by the standard lib version (#279)Claude Paroz2017-02-249-1660/+2
| | | Refs #273.
* Replaced vendored pyyaml by a dependency (#278)Claude Paroz2017-02-2035-11530/+1
|
* Replaced vendored xlrd/xlwt by dependencies (#277)Claude Paroz2017-02-2093-42752/+4
| | | Refs #273.
* Replaced vendored openpyxl by a dependency (#221)Claude Paroz2017-02-2066-11303/+17
| | | | | | | | | | | | It is time to make it happen. * Dropped Python 3.2 support Recent dependencies are dropping Python 3.2 too. * Replaced vendored openpyxl by a dependency Thanks Tommy Anthony for the initial patch.
* Merge pull request #272 from founders4schools/unicodecsvKenneth Reitz2017-01-242-198/+1
|\ | | | | Replaced vendored unicodecsv by a dependency
| * Replaced vendored unicodecsv by a dependencyBruno Alla2017-01-152-198/+1
| | | | | | | | Using https://pypi.python.org/pypi/unicodecsv/0.14.1
* | Version bump: 0.11.4v0.11.4Iuri de Silvio2017-01-231-2/+2
|/
* remove file must be close it.tomwen2016-12-301-0/+1
| | | | | | in windows if you don't close template file, remove it will raise WindowsError: [Error 32]
* Merge pull request #234 from BrianPainter/masterIuri de Silvio2016-12-181-1/+8
|\ | | | | if the object is a decimal, return the string representation of it.
| * if the object is a decimal, return the string representation of it.Brian Painter2016-03-231-1/+8
| |