Skip to main content

Easy data input/output utilities.

Project description

pyeio | pypi

  • 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.3.tar.gz (109.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.3-py3-none-any.whl (19.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pyeio-0.2.3.tar.gz
Algorithm Hash digest
SHA256 5f425aec549a57506af27594813e5411bfb33aba764c0e5a483bc9ae604a13f8
MD5 edeb93381ad373acf17eca4229b4e1a1
BLAKE2b-256 350a7548d9148261a8f7b5c15595414b370c742c699d0eb6d7d560e2d1b0773c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyeio-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3551f3e6748c1e01ccbb127f1ea6c3066ce897e43d527ddebbdf3d0af2746d3f
MD5 9a0cf1859ec662ac260f1e4f2ec6eb30
BLAKE2b-256 024af63a014371bf327fb18d081ca4569d9ad3dcb140aa90466a5664f898e026

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