Skip to main content

Python library for easy input/output file operations.

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyeio-0.0.5.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

pyeio-0.0.5-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page