tablib
tablib copied to clipboard
Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.
Hi, for XLSX format, databook sheet title must be below 32 characters. If it is longer, you get a warning about a corrupted file when trying to open such file...
# see discussion in issue 572. Copy of the code example: ``` data = tablib.Dataset() txt='''Greg Thorton Dave Coutts Joshua Ourisman''' data.extend([item.split() for item in txt.splitlines()]) def dynamicColumn(row): return row[-1].upper()+'!'...
Hi! I am using `django-import-export` and downloaded `.xlsx` file from Google Drive and I've got error about `InvalidDimensions`. I found this error before in issues https://github.com/jazzband/tablib/issues/465 And recently it was...
I thought I would open an issue to gauge interest in a terminal / plain text formatter. This possible formatter would print or read data from space padded plain text....
Hi all. Before I start, I'm aware of #224 but it is 4 years old and tablib has changed quite extensively since then (dropped Python 2 support, format extensions are...
Hello, Packages that leverage this app like django-tablib allows us to export user submitted data. This exposes a potential security issue where users can add excel formulas to certain exported...
As part of #398 I've added disabled calls to flake8 including a commented-out installation of the flake8-black and flake8-isort plugins. I would suggest to run black and isort once over...
This PR allows user to specify column width in XLXS format. For it has a default value, which is not suitable for long values in dataset. As a result, it...
I can feed a tablib cell a datetime, and formatting that cell as date in Excel works - the number shown initially gets converted to a valid date. Can i...
From the docs, I think this is working as designed, but wanted to check. There's a decent chance I'm doing something wrong. File auto-detection becomes less useful to library consumer...