Skip to main content

EdgeSync

CI PyPI License: MIT Python

A lightweight Python library for reliable data delivery from edge applications to cloud services. EdgeSync provides persistent local queuing, store-and-forward synchronization, automatic retries, and recovery from network or application failures. Built for IoT devices, edge gateways, industrial systems, and any application operating with intermittent connectivity.

Why EdgeSync

Edge applications lose data for the same handful of reasons every time: the network drops, the cloud endpoint is temporarily unavailable, or the process crashes mid-send. EdgeSync solves this with a durable store-and-forward architecture:

  1. Data is persisted locally (SQLite) before anything is sent.
  2. A background worker attempts delivery to the configured destination.
  3. Acknowledged messages are removed from the local queue.
  4. Failed messages stay queued and are retried with backoff.
  5. Pending data survives process crashes and device restarts.

EdgeSync provides at-least-once delivery, not exactly-once — see docs/reliability.md for the exact guarantee and how to build idempotent consumers on top of it.

Install

pip install edgesync

Quickstart

import asyncio
from edgesync import EdgeSync


async def main():
    async with EdgeSync(
        database="edgesync.db",
        endpoint="https://api.example.com/telemetry",
    ) as sync:
        receipt = await sync.publish(
            {
                "device_id": "device-001",
                "temperature": 28.5,
            }
        )
        print(f"queued as {receipt.message_id}")


asyncio.run(main())

That's it: publish() durably persists the message and returns as soon as it's on disk. A background worker delivers it, retrying with exponential backoff on failure, without the caller needing to stay connected or wait for the network.

Usage with FastAPI, Flask, and plain asyncio

EdgeSync is async-native, so it's most at home in an asyncio app or an async framework like FastAPI — start it once, publish from your handlers, close it on shutdown:

# FastAPI
@asynccontextmanager
async def lifespan(app: FastAPI):
    await sync.start()
    yield
    await sync.close()


app = FastAPI(lifespan=lifespan)


@app.post("/telemetry")
async def telemetry(payload: dict):
    receipt = await sync.publish(payload)
    return {"message_id": receipt.message_id}

Flask is synchronous, so it needs a small bridge to run EdgeSync's event loop on a background thread rather than spinning up a new loop per request. See docs/integrations.md for the full FastAPI, Flask, and plain-asyncio guide, including the ready-to-use Flask bridge.

Features

  • Durable local queue — SQLite-backed, survives crashes and restarts.
  • At-least-once delivery — messages are only removed once the destination acknowledges them.
  • Automatic retries — configurable exponential backoff with jitter.
  • Dead-letter queue — messages that exhaust retries or fail permanently are retained for inspection instead of being silently dropped.
  • Multiple destinations — route different message types to different endpoints or transports.
  • Pluggable transports — ships with an HTTP transport; implement Transport for anything else (MQTT, gRPC, a message broker, ...).
  • Bounded storage — configurable queue capacity with a choice of overflow policies.
  • Async-native — built on asyncio and httpx.

Documentation

Development

uv sync
uv run pytest
uv run ruff check .
uv run mypy

See CONTRIBUTING.md for the full workflow.

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

edgesync-0.2.1.tar.gz (94.2 kB view details)

Uploaded Source

Built Distribution

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

edgesync-0.2.1-py3-none-any.whl (33.7 kB view details)

Uploaded Python 3

File details

Details for the file edgesync-0.2.1.tar.gz.

File metadata

  • Download URL: edgesync-0.2.1.tar.gz
  • Upload date:
  • Size: 94.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for edgesync-0.2.1.tar.gz
Algorithm Hash digest
SHA256 2dced2d8fb2b5045ea053ec6a45dbd1a7e75e486ebe9c53526db2dcd236927b6
MD5 ad0a87ea99970bf058544c74888b7556
BLAKE2b-256 38159291dda61e6239792f6f618fbff571fc0b02b33154c3714112c9a7a70e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for edgesync-0.2.1.tar.gz:

Publisher: release.yml on adhuldas/EdgeSync

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file edgesync-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: edgesync-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 33.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for edgesync-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7d1eda1dcb6cae0a625515abad7630bfde49f2181dca9161ddef8df7b59e51fd
MD5 46068e84b4a342d5e9a27c912829488c
BLAKE2b-256 dfbdd397189b0ec991f5dd2ef6bd803bda5c20cc3cc9ffeabf35f2a676731449

See more details on using hashes here.

Provenance

The following attestation bundles were made for edgesync-0.2.1-py3-none-any.whl:

Publisher: release.yml on adhuldas/EdgeSync

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.3.2

2 files

0.3.1

2 files

This release

0.2.1 This release

2 files

0.2.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page