Skip to main content

Easy data input/output utilities.

Project description

pyeio

  • Description: Drop-in replacement for standard io module with some extra utilities.
  • Purpose: Solves having to constantly with open stuff.
  • Notes: Full docs may be added at some later point, along with some other file formats perhaps.

Install

pip install pyeio

or

uv add pyeio

Usage

import pyeio as io

Everything should work the same as io, but with the following additions:

Extra IO Functions

io.read

Read file content as string (utf-8) or bytes.

# Read as string (default)
content = io.read("file.txt")

# Read as bytes
data = io.read("file.bin", bytes)

io.write

Write string or bytes to a file. Raises an error if the file already exists unless overwrite=True.

# Write string
io.write("file.txt", "Hello, world!")

# Write bytes
io.write("file.bin", b"\x00\x01\x02")

# Overwrite existing file
io.write("file.txt", "New content", overwrite=True)

io.append

Append string or bytes to the end of a file.

# Append string
io.append("file.txt", "\nAnother line")

# Append bytes
io.append("file.bin", b"\x03\x04")

Formats

Additionally, json, toml, and yaml are included, with overloads/generics for handling pydantic models. Each of these exposes a read, and write function which more or less works the exact same way, along with a parse and serialize function.

Here are some examples:

# Read JSON file
data = io.json.read("config.json")

# Read JSON file into a Pydantic model
user = io.json.read("user.json", UserModel)

# Write JSON to file
io.json.write("output.json", {"key": "value"})

# Write with pretty printing
io.json.write("output.json", data, overwrite=True, indent=True)

# Parse JSON string/bytes
data = io.json.parse('{"key": "value"}')
user = io.json.parse(json_bytes, UserModel)

# Serialize to string/bytes
json_bytes = io.json.serialize(data)  # returns bytes by default
json_str = io.json.serialize(data, str)

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.2.0.tar.gz (111.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyeio-0.2.0-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

Details for the file pyeio-0.2.0.tar.gz.

File metadata

  • Download URL: pyeio-0.2.0.tar.gz
  • Upload date:
  • Size: 111.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.4

File hashes

Hashes for pyeio-0.2.0.tar.gz
Algorithm Hash digest
SHA256 2b099cdfdfaaeddce686087969369538a2d66269a1e6ebeef7e341e81533b5ed
MD5 5566e1c9a37b8a9ac262b6d8ce74486c
BLAKE2b-256 8a521ae48b6c28bfe84bd628ffb384303c27a1a8bfbd74f3c723b3683b696213

See more details on using hashes here.

File details

Details for the file pyeio-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pyeio-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.4

File hashes

Hashes for pyeio-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f02833492b367484706e3a5776daf87ba6b758b138d6001b4583b2389d6bcb30
MD5 3fceb9b5edc986e5a911ab35d6b0c108
BLAKE2b-256 66ba17057c3f5ec91a2f1f52028d86938fb05394849f9483d63fb28942a2ff0a

See more details on using hashes here.

Supported by

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