pyeio

Python library for easy input/output file operations.


Keywords
python
License
MIT
Install
pip install pyeio==0.0.1

Documentation

pyeio



Short for Python Easy Input Output, pyeio is a python library meant to simplify file IO processes.

pip install pyeio

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

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

By simplifying it to the following line.

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

For more examples visit the documentation site.