Metadata-Version: 2.1
Name: writio
Version: 0.0.1
Summary: Short description of package.
Home-page: https://github.com/fmatter/writio
Author: Florian Matter
Author-email: fmatter@mailbox.org
Project-URL: Bug Tracker, https://github.com/fmatter/writio/issues
Keywords: files,flies
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Provides-Extra: dev
Requires-Dist: bump2version ; extra == 'dev'
Requires-Dist: coverage[toml] ; extra == 'dev'
Requires-Dist: prospector (==1.10.2) ; extra == 'dev'
Requires-Dist: isort ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: sphinx ; extra == 'dev'
Requires-Dist: sphinx-rtd-theme ; extra == 'dev'
Requires-Dist: sphinx-autoapi ; extra == 'dev'
Requires-Dist: sphinxcontrib-napoleon ; extra == 'dev'
Requires-Dist: tox ; extra == 'dev'
Requires-Dist: myst-parser ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: twine ; extra == 'dev'
Requires-Dist: jinja2 ; extra == 'dev'
Requires-Dist: keepachangelog ; extra == 'dev'
Provides-Extra: publishing
Requires-Dist: twine ; extra == 'publishing'
Requires-Dist: wheel ; extra == 'publishing'

# writio

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

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

```python
from writio import load, dump

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