Metadata-Version: 2.1
Name: interoperable-csv
Version: 0.2.0
Summary: Read, write, and transform iCSV files.
License: GPL-3.0-only
Keywords: icsv,snow,timeseries,geospatial,climate
Author: Patrick Leibersperger
Author-email: patrick.leibersperger@slf.ch
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pandas (>=2.0,<3.0)
Requires-Dist: xarray (>=2024.3.0,<2025.0.0)
Description-Content-Type: text/markdown

# icsv

Standalone Python package for reading, writing, and transforming iCSV files.

## Installation

```bash
pip install icsv
```

## Quickstart

```python
import icsv

f = icsv.read("input.icsv")
print(f.fields.get_attribute("fields"))
f.write("copy.icsv")
```

## Documentation

Project documentation is built with MkDocs and deployed through the CI pages pipeline.


