Source: pyodsstream
Maintainer: Olivier Langella <olivier.langella@cnrs.fr>
Section: python
Priority: optional
Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9), python3-importlib-resources
Standards-Version: 3.9.6
Homepage: None

Package: python3-pyodsstream
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, python3-importlib-resources, python3-colormap
Description: Stream API to read and write Open Document Spreadsheet (ODS)
 # pyodsstream
 .
 Simple python API to handle ODS and tabulated files as streams. It provides lazy methods to read and write Open Document Spreadsheet or TSV files saving memory: data can be treated on the fly without having to load the entire tables.
 .
 ## Simple usage: write an ODS file
 .
 ```python
 from pyodsstream import OdsDocWriter
 .
 ods_file = "test.ods"
 with open(ods_file, "wb") as fp:
     writer = OdsDocWriter(fp)
     writer.write_sheet("This is a new sheet")
     writer.write_cell("This is a cell")
     writer.write_cell(15)
     writer.write_line()
     writer.write_cell("This is a cell on the second line")
     writer.close()
 ```
 .

