Path to this page:
./
textproc/py-tablib,
Format agnostic tabular data library (XLS, JSON, YAML, CSV)
Branch: CURRENT,
Version: 3.7.0,
Package name: py312-tablib-3.7.0,
Maintainer: pkgsrc-usersTablib is a format-agnostic tabular dataset library, written in Python.
Output formats supported:
* Excel (Sets + Books)
* JSON (Sets + Books)
* YAML (Sets + Books)
* Pandas DataFrames (Sets)
* HTML (Sets)
* TSV (Sets)
* OSD (Sets)
* CSV (Sets)
* DBF (Sets)
Required to run:[
textproc/py-yaml] [
textproc/py-xlrd] [
textproc/py-xlwt] [
textproc/py-openpyxl] [
textproc/py-tabulate] [
textproc/py-odfpy] [
lang/python310] [
textproc/py-markuppy]
Master sites:
Filesize: 118.38 KB
Version history: (Expand)
- (2024-10-15) Updated to version: py312-tablib-3.7.0
- (2024-10-14) Updated to version: py312-tablib-3.6.1
- (2024-04-27) Updated to version: py311-tablib-3.6.1
- (2024-03-24) Updated to version: py311-tablib-3.6.0
- (2023-12-07) Updated to version: py311-tablib-3.5.0
- (2023-10-28) Updated to version: py311-tablib-3.4.0nb1
CVS history: (Expand)
2024-03-24 18:22:44 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-tablib: updated to 3.6.0
3.6.0 (2024-03-23)
Improvements
- It's now possible to access a dataset row using its index without slicing
- The dataset `transpose()` method can be called on datasets without headers.
- The html format now supports importing from HTML content
- The ODS format now supports importing from .ods files
still a bit experimental.
- When adding rows to a dataset with dynamic columns, it's now possible to
provide only static values, and dynamic column values will be automatically
calculated and added to the row
Changes
- The html export format does not depend on MarkupPy any longer, therefore the
tablib[html] install target was removed also.
Bugfixes
- Fix crash when loading a databook from an XLS file
- `None` Python values are now converted to the empty string by the ODS formatter.
- When applying formatters, the internal data is no longer mutated
- Columns can be inserted even when a dataset has headers but no values
|
2023-12-07 19:15:44 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-tablib: updated to 3.5.0
3.5.0 (2023-06-11)
Improvements
Add support for Python 3.12
Drop support for EOL Python 3.7
Allow importing 'ragged' .xlsx files through dataset
Release: replace deprecated repository_url with repository-url
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-08-02 01:20:57 by Thomas Klausner | Files touched by this commit (158) |
Log message:
*: remove more references to Python 3.7
|
2023-07-01 10:37:47 by Thomas Klausner | Files touched by this commit (105) | |
Log message:
*: restrict py-numpy users to 3.9+ in preparation for update
|
2023-04-26 12:08:11 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-tablib: updated to 3.4.0
3.4.0 (2023-03-24)
Improvements
- Move setup to `pyproject.toml`
- xlsx export: remove redundant code
- xlsx export: support escape of formulae
- Add <tbody> tags to HTML output
- Check for type list and improve error msg
Bugfixes
- Fix bug when yaml file is empty
- Fix linting issues raised by Flake8
|
2023-01-18 12:33:46 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-tablib: updated to 3.3.0
3.3.0 (2022-12-10)
Improvements
- Add support for Python 3.11.
- ODS export: integers/floats/decimals are exported as numbers.
|
2022-11-29 11:51:45 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-tablib: updated to 3.2.1
3.2.1 (2022-04-09)
Bugfixes
- Support solo CR in text input imports
3.2.0 (2022-01-27)
Changes
- Dropped Python 3.6 support
Bugfixes
- Corrected order of arguments to a regex call in `safe_xlsx_sheet_title`
3.1.0 (2021-10-26)
Improvements
- Add support for Python 3.10
- The csv, xls, and xlsx formats gained support for the `skip_lines` keyword
argument for their `import_set()` method to be able to skip the nth first
lines of a read file
Bugfixes
- Avoided mutable parameter defaults
- Specify build backend for editable installs
- Doubled sample size passed to `csv.Sniffer()` in `_csv.detect()`
3.0.0 (2020-12-05)
Breaking changes
- Dropped Python 3.5 support.
- JSON-exported data is no longer forced to ASCII characters.
- YAML-exported data is no longer forced to ASCII characters.
Improvements
- Added Python 3.9 support.
- Added read_only option to xlsx file reader
Bugfixes
- Prevented crash in rst export with only-space strings
|