Metadata-Version: 2.1
Name: writio
Version: 0.1.2
Summary: A file reading and writing library for `.csv`, `.yaml`, `.json`, and `.pickle` files. You probably shouldn't use this.
License: MIT
Author: Florian Matter
Author-email: flmt@mailbox.org
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
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: invoke (>=2.2.0,<3.0.0)
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Description-Content-Type: text/markdown

# writio

A file reading and writing library for `.csv`, `.yaml`, and `.json` files. You probably shouldn't use this.

[![Tests](https://img.shields.io/github/actions/workflow/status/fmatter/writio/tests.yml?label=tests)](https://github.com/fmatter/writio/actions/workflows/tests.yml)
![Versions](https://img.shields.io/pypi/pyversions/writio)
[![PyPI](https://img.shields.io/pypi/v/writio.svg)](https://pypi.org/project/writio)
![License](https://img.shields.io/github/license/fmatter/writio)

```python
from writio import load, dump

dic = load("dict.yaml")
dump(dic, "dict.json")
dic = load("dict.json")
df = load("table.csv")
```

