Release v0.1.2 (What’s new?).

Documentation Status https://github.com/MacHu-GWU/unistream-project/actions/workflows/main.yml/badge.svg https://codecov.io/gh/MacHu-GWU/unistream-project/branch/main/graph/badge.svg https://img.shields.io/pypi/v/unistream.svg https://img.shields.io/pypi/l/unistream.svg https://img.shields.io/pypi/pyversions/unistream.svg https://img.shields.io/badge/✍️_Release_History!--None.svg?style=social&logo=github https://img.shields.io/badge/⭐_Star_me_on_GitHub!--None.svg?style=social&logo=github
https://img.shields.io/badge/Link-API-blue.svg https://img.shields.io/badge/Link-Install-blue.svg https://img.shields.io/badge/Link-GitHub-blue.svg https://img.shields.io/badge/Link-Submit_Issue-blue.svg https://img.shields.io/badge/Link-Request_Feature-blue.svg https://img.shields.io/badge/Link-Download-blue.svg

Welcome to unistream Documentation

https://unistream.readthedocs.io/en/latest/_static/unistream-logo.png

unistream is a universal Producer / Consumer abstraction layer for stream systems. It lets you use a single, unified interface to send data to and pull data from any streaming backend — Apache Kafka, AWS Kinesis, AWS CloudWatch Logs, Apache Pulsar, or even local files — while the library handles batching, fault tolerance, retries, and exactly-once consumption behind the scenes.

The core library ships only local-file implementations. Vendor-specific integrations (AWS Kinesis, CloudWatch Logs, DynamoDB checkpoint, etc.) are released as separate plugin packages.

Features

  1. Efficient Record Buffering: Groups records into micro-batches with a Write-Ahead Log (WAL) for crash recovery, optimizing network bandwidth without risking data loss.

  2. Non-blocking Exponential Backoff: Automatic retry with configurable backoff schedules. The retry check is time-based (no sleep), so your application thread is never blocked.

  3. Checkpoint & Exactly-Once Consumption: Per-record status tracking (pending → in_progress → succeeded / failed / exhausted), UUID-based concurrency locking with auto-expiry, and stream pointer persistence for fault-tolerant consumption.

  4. Pluggable Architecture: Five core abstractions (Record, Buffer, Producer, CheckPoint, Consumer) with clean ABC → Base → Concrete layering. Implement send() for a new producer or get_records() for a new consumer — the framework handles everything else.

Core Abstractions

  • AbcRecord / DataClassRecord — the atomic data unit (id + create_at + serialize/deserialize).

  • AbcBuffer / FileBuffer — WAL-backed batch buffer (put → should_i_emit → emit → commit).

  • AbcProducer / BaseProducer / SimpleProducer — non-blocking put() event loop with retry.

  • AbcCheckPoint / BaseCheckPoint / SimpleCheckpoint — per-record state machine + persistence.

  • AbcConsumer / BaseConsumer / SimpleConsumer — consumption loop with tenacity retry + DLQ hook.

AI Agent Skill

A self-contained Claude Code skill is included at .claude/skills/unistream/SKILL.md. It contains the complete API reference, protocols, and usage examples — any AI coding agent with this skill loaded can build custom producers, consumers, buffers, checkpoints, and records without reading the source code.

Install

unistream is released on PyPI, so all you need is to:

$ pip install unistream

To upgrade to latest version:

$ pip install --upgrade unistream

Table of Content

About the Author

(\ (\
( -.-)o
o_(")(")

Sanhe Hu is a seasoned software engineer with a deep passion for Python development since 2010. As an author and maintainer of 150+ open-source Python projects, with over 15 million monthly downloads, I bring a wealth of experience to the table. As a Senior Solution Architect and Subject Matter Expert in AI, Data, Amazon Web Services, Cloud Engineering, DevOps, I thrive on helping clients with platform design, enterprise architecture, and strategic roadmaps.

Talk is cheap, show me the code:

API Document