Metadata-Version: 2.1
Name: pyeio
Version: 0.0.4
Summary: Python library for easy input/output file operations.
Home-page: https://github.com/harttraveller/pyeio
Author: Hart Traveller
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

<div align="center">
<a href="https://harttraveller.com/pyeio" target="_blank">
<img src="https://raw.githubusercontent.com/harttraveller/pyeio/main/docs/assets/pyeio-large.png" width=200>
</a>
</div>
<br>
<div align="center">

![Python](https://img.shields.io/badge/python-3.10-blue) ![GitHub](https://img.shields.io/badge/license-MIT-blue)![Code Style](https://img.shields.io/badge/code%20style-black-black)
</div>

# pyeio

Short for `Py`thon `E`asy `I`nput `O`utput, `pyeio` is a python library meant to simplify file IO processes.

```bash
pip install pyeio
```

For example, you can use it to avoid rewriting the code below hundreds of times.

```python
import json
with open("data/example.json", "r") as file:
    data = json.load(file)
file.close()
```

By simplifying it to the following line.

```python
from pyeio import easy
data = easy.load("data.json")
```

For more examples visit the [documentation](https://harttraveller.com/pyeio) site.




