summaryrefslogtreecommitdiff
path: root/src/tablib/formats
Commit message (Collapse)AuthorAgeFilesLines
* Expose 'read_only' parameter for 'import_set' and 'import_book' (#483)HEADmasterdmosberger2020-12-041-4/+4
|
* Add support for Python 3.9, drop EOL 3.5 (#477)Hugo van Kemenade2020-10-306-7/+10
|
* Suggest quotes when pip installing with optional dependencies (#474)Hugo van Kemenade2020-08-122-2/+2
|
* Fixes #469 - Prevented rst crash with only-space strings (#470)Claude Paroz2020-06-151-1/+1
| | | Thanks nexone for the report.
* Fixes #465 - Allow importing 'ragged' .xlsx files (#466)Claude Paroz2020-05-161-0/+2
|
* Fixes #462 - Update xlsx import to read cell values instead of cell formulasdragonworks2020-03-111-2/+2
| | | Co-authored-by: Claude Paroz <claude@2xlibre.net>
* Refs #373 - Import dates from xls files as Python datetime objectsClaude Paroz2020-03-091-1/+9
|
* Fixes #226 - Allow importing ragged CSV files (#456)Claude Paroz2020-02-121-0/+2
|
* Optimize xlsx detection (#448)Claude Paroz2020-01-261-10/+13
| | | | Reading the whole file is a bit too much to detect if the file looks like an xlsx file.
* Fix the missing xls dependencies messageClaude Paroz2020-01-141-1/+1
|
* Refs #401 - Fixed some flake8 errorsClaude Paroz2020-01-113-4/+1
|
* Fixes #440 -Normalize stream inputs as IO streamsClaude Paroz2020-01-117-19/+16
|
* Refactor error raising to remove duplicationHugo van Kemenade2019-12-101-29/+13
|
* Implement feature that allows to export tabular data suited to a… (#437)Daniel Santos2019-12-102-1/+27
|
* Force default_flow_style for pyyaml safe_dumpJoseph Herlant2019-11-241-2/+2
| | | | This is to keep behavior of pre-5.1 pyyaml.
* Fix NameError: name '_get_column_widths' is not defined (#433)Hugo van Kemenade2019-11-121-1/+1
| | | | | | * Fix NameError: name '_get_column_widths' is not defined * Also test ReSTFormat.export_set
* Fixes #422 - Allow ability to lazy-load external modules (#430)Claude Paroz2019-11-112-39/+68
|
* Update testing: add docs + lint jobs; use pre-commit for linting (#426)Hugo van Kemenade2019-11-101-2/+1
| | | | | | | | | | | | | | | | | | * Move docs and lint to their own [3.8] build job for more parallelism * No codecov for docs or lint * Move isort into pre-commit * Add some handy linters to pre-commit * Add rst-backticks linter and fix the errors * Add pyupgrade and add upgrades * Test docs and lint on GitHub Actions * Xenial is default
* Fixes #421 - Make all dependencies optionalClaude Paroz2019-11-101-6/+46
| | | | Thanks Hugo van Kemenade for the review.
* Refs #256 - Implement class-based formatsClaude Paroz2019-11-0214-928/+995
| | | | This allows to extend Tablib with new formats far more easily.
* Revert " Implement feature new format: Cli. Generate adapter for tabulate. ↵Claude Paroz2019-10-302-22/+1
| | | | | | | This close issue #340" This reverts commit c26159d48f60e737ba6e308b3ed88858cd115cc7. The patch was NOT ready to be merged.
* Implement feature new format: Cli. Generate adapter for tabulate. This ↵Daniel Santos2019-10-302-1/+22
| | | | | | | | | | | | | | | | close issue #340 * Implement feature new format: Cli. Generate adapter for tabulate. This close issue #340 * Write respective tests. * Correct name Clase Base Test * Implement missing class method to export cli. * Remove property headers in method export book Cli. * Remove cli from list to test Iterable data books.
* Fixes #202 - Keep error content when importing xls filesClaude Paroz2019-10-221-1/+4
|
* Add known third parties to isortClaude Paroz2019-10-223-5/+2
|
* Refs #401 - Sort imports with isortHugo2019-10-2211-23/+19
|
* Removed unused importsClaude Paroz2019-10-202-3/+0
|
* Upgrade Python syntax with pyupgrade --py3-plusHugo2019-10-194-7/+7
|
* Fixes #368 - Avoid crashing when exporting empty string in ReSTClaude Paroz2019-10-191-1/+1
|
* [csv] Fixes #342 - Feed only 1k of content to csv.SnifferClaude Paroz2019-10-191-1/+1
| | | | Thanks Rivo Laks for the suggestion.
* Fix some linting errorsPeyman Salehi2019-10-197-10/+10
|
* Drop python 2 supportPeyman Salehi2019-10-1914-92/+33
| | | | | | | Remove support python 2 from doc, requirements.txt and config Replace unicode with str Remove dbfpy folder and rename dbfpy3 to dbfpy Remove compat file and remove python2 packages from dependency
* Add project release config and cleanup project setup. (#398)Jannis Leidel2019-10-1814-0/+1248
* Add project release config and use Travis build stages. Refs #378. * Restructure project to use src/ and tests/ directories. * Fix testing. * Remove eggs. * More fixes. - isort and flake8 config - manifest template update - tox ini extension - docs build fixes - docs content fixes * Docs and license cleanup.