Unified async I/O for Hanzo AI - high-performance with uvloop fallback
Project description
hanzo-async
Unified async I/O for Hanzo AI - high-performance with uvloop fallback.
Features
- Automatic uvloop configuration - Falls back to asyncio on Windows
- Async file I/O - Read, write, append with aiofiles
- Async path operations - exists, is_file, mkdir, etc.
- Async subprocess execution - run_command, run_shell
- Consistent patterns - Same API across all Hanzo packages
Installation
pip install hanzo-async
# With uvloop support (recommended for macOS/Linux)
pip install hanzo-async[uvloop]
Quick Start
from hanzo_async import (
# Loop configuration
configure_loop,
using_uvloop,
# File operations
read_file,
write_file,
read_json,
write_json,
# Path operations
path_exists,
is_file,
is_dir,
mkdir,
# Process operations
run_command,
run_shell,
)
# Check if using uvloop
if using_uvloop():
print("Using uvloop for high-performance async")
# Async file operations
async def example():
# Read/write files
content = await read_file("/path/to/file.txt")
await write_file("/path/to/output.txt", content)
# JSON handling
data = await read_json("/path/to/config.json")
data["updated"] = True
await write_json("/path/to/config.json", data)
# Path operations
if await path_exists("/path/to/file"):
if await is_file("/path/to/file"):
await unlink("/path/to/file")
await mkdir("/path/to/new/dir", parents=True, exist_ok=True)
# Run commands
stdout, stderr, code = await run_command("ls", "-la")
stdout, stderr, code = await run_shell("echo $HOME && pwd")
API Reference
Loop Configuration
configure_loop()- Configure uvloop (auto-called on import)using_uvloop()- Check if uvloop is activeget_loop()- Get current event loop
File Operations
read_file(path)- Read file contentwrite_file(path, content)- Write content to fileappend_file(path, content)- Append to fileread_json(path)- Read and parse JSONwrite_json(path, data)- Write JSON to fileread_lines(path)- Read file as lineswrite_lines(path, lines)- Write lines to fileread_bytes(path)- Read file as byteswrite_bytes(path, content)- Write bytes to file
Path Operations
path_exists(path)- Check if path existsis_file(path)- Check if path is fileis_dir(path)- Check if path is directorymkdir(path, parents=False, exist_ok=False)- Create directoryrmdir(path)- Remove empty directoryunlink(path, missing_ok=False)- Remove filestat(path)- Get file/directory statslistdir(path)- List directory contentsglob(pattern, root_dir=None, recursive=False)- Find filesrename(src, dst)- Rename/move filecopy(src, dst)- Copy filecopytree(src, dst)- Copy directory treermtree(path)- Remove directory tree
Process Operations
run_command(*args)- Run command with argsrun_shell(command)- Run shell commandcheck_command(command)- Check if command existswhich(command)- Find command pathstart_background(*args)- Start background process
Why hanzo-async?
- Consistent async patterns - All Hanzo packages use the same I/O patterns
- High performance - uvloop provides 2-4x faster async on Unix
- Automatic fallback - Works on Windows with standard asyncio
- No event loop blocking - All operations are truly async
- Easy to use - Simple function-based API
License
MIT
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
hanzo_async-0.1.2.tar.gz
(8.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hanzo_async-0.1.2.tar.gz.
File metadata
- Download URL: hanzo_async-0.1.2.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9805440f57c72e8f07f498aa46aa1fa840b0390e3eba4c2cf12276d25677f1a4
|
|
| MD5 |
58b22eb351dcf8c024d6c888a0158245
|
|
| BLAKE2b-256 |
c2321913679356877fe7f114d8910eadac25f57bab0783b1d42b7b4f678753e0
|
File details
Details for the file hanzo_async-0.1.2-py3-none-any.whl.
File metadata
- Download URL: hanzo_async-0.1.2-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d9d002cee263bd18df3fe2c36bbb52ea9f0b461d056a1260814f26dd5e79698
|
|
| MD5 |
9500123d0aacf2b2667d3815d5464000
|
|
| BLAKE2b-256 |
c27d8dcbb391100fc7003b1f7b1e747ed4fb8ba898cb1fa83a4400b93a49500a
|