Skip to main content

A Pythonic client library for streaming data with ZebraStream.

Project description

zebrastream-io

Python IO interface for ZebraStream data streaming services.

Disclaimer:
The code in this package is considered pre-production quality. APIs and functionality may change without notice. Use with caution in production environments.

Features

  • File-like synchronous interface for ZebraStream data streams
  • Async interface (internal, subject to change)
  • Easily extensible for other IO interfaces

Installation

pip install zebrastream-io

Usage

Synchronous file-like interface

The synchronous interface provides a familiar, file-like API for reading from and writing to ZebraStream data streams. This design allows you to interact with remote streams using standard Python file IO, making integration with existing codebases straightforward. The goal is to offer a simple and reliable way to handle streaming data without requiring knowledge of asynchronous programming or custom protocols.

Producer

import zebrastream.io.file as zsfile

with zsfile.open(mode="wb", stream_path="/my-stream", access_token=token) as f:
    f.write(b"Hello ZebraStream!")

Consumer

import zebrastream.io.file as zsfile

with zsfile.open(mode="rb", stream_path="/my-stream", access_token=token) as f:
    data = f.read(1024)  # read 1024 bytes
    # do something with the data

Async interface (internal)

Async interface for performing network operations using the asyncio event loop.

This interface is currently non-public and subject to change, as it is under active development. The primary goal is to provide an internal, robust reference implementation for ZebraStream, leveraging Python's async/await syntax. At present, the implementation exclusively supports execution within the asyncio event loop, as it relies on the httpio library — the only request library currently offering reliable, full-duplex communication required for complete ZebraStream protocol support.

Future plans include stabilizing the API and exposing standard async streaming interfaces such as asyncio StreamReader/StreamWriter.

Producer

from zebrastream.io._core import AsyncWriter
import asyncio

async def main():
    async with AsyncWriter(stream_path="/my-stream", access_token=token) as writer:
        await writer.write(b"Hello ZebraStream!")

asyncio.run(main())

Consumer

from zebrastream.io._core import AsyncReader
import asyncio

async def main():
    async with AsyncReader(stream_path="/my-stream", access_token=token) as reader:
        data = await reader.read(1024)
        # do something with the data

asyncio.run(main())

Documentation

See ZebraStream documentation for more details.

License

MIT License. See LICENSE for details.

See also

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

zebrastream_io-0.2.0.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

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

zebrastream_io-0.2.0-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: zebrastream_io-0.2.0.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.4 CPython/3.13.1 Linux/6.11.0-1018-azure

File hashes

Hashes for zebrastream_io-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f89e9d35a115e7b502e6c67e40dcb14519f59ebbf45ee4a7a1ad995c76cd4471
MD5 19eb448c5e3f0ca3e71b2a80d6ecf3af
BLAKE2b-256 80bed4f7ee3e4966185949aba63b0fe67ea0b5eaa4f1378f828fc74786cdf0ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zebrastream_io-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.4 CPython/3.13.1 Linux/6.11.0-1018-azure

File hashes

Hashes for zebrastream_io-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a620f5766204123925864b25c8d9998512b92dc7f72d92393e59c274ab9f5e64
MD5 9bf6b43d486994b0c5e36f216657f9f4
BLAKE2b-256 d5c4dc0f28f28aa756289617fe64353e354aad5f4c3a6f60eb8f70faf3dd73fc

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