Skip to main content

Iterator with adjustable delays between iterations.

Project description

❤️ cardaio

A Python library for adjustable delays.

The main use case is when you want to periodically pull something from a third-party system but you don't know exactly how often the system will have updates. For example, you're monitoring a news website for a particular topic and you want to pull news as soon as they are available but at the same time you don't want to send too many requests when there are no updates.

😎 Features

  • 🐍 Pure Python.
  • 🐎 asyncio-first with synchronous API available.
  • 🛡 Fully type-annotated and type-safe.
  • 🪶 Zero-dependency.
  • 🔧 Highly configurable.
  • ☑️ 100% test coverage.

📦 Installation

python3 -m pip install cardaio

🛠️ Usage

from cardaio import Heartbeat

async def run() -> None:
    hb = Heartbeat(
        # never pull more often than every 1s.
        fastest=1,
        # never pull less often than every 1m.
        slowest=60,
        # start with 10s between iterations.
        start=10,
    )
    async for _ in hb:
        # Pull messages from a remote system.
        msgs = await pull_messages()
        # If there are more than 5 messages,
        # start pulling more often.
        if msgs > 5:
            hb.faster()
        # If there are no messages,
        # pull less often
        elif not msgs:
            hb.slower()
        ...  # do something with messages

🖨 Acknowledgments

The project is inspired by cardio.go Go script introduced by Xe Iaso in the Anything can be a message queue if you use it wrongly enough blog post. The implementation and API are different, though, to make it pythonic and user-friendly.

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

cardaio-1.0.0.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

cardaio-1.0.0-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file cardaio-1.0.0.tar.gz.

File metadata

  • Download URL: cardaio-1.0.0.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.2

File hashes

Hashes for cardaio-1.0.0.tar.gz
Algorithm Hash digest
SHA256 c749d326d68c85c859bfe2fe659ab4bcabfa8bcc0bb058b30506267e902fc57c
MD5 c70920782f73c293d3f87253a2e6e23d
BLAKE2b-256 48b54f402c22aedde8665674a23225fd1c3507fd4d91b8214de6f1a0634a6f36

See more details on using hashes here.

File details

Details for the file cardaio-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: cardaio-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.2

File hashes

Hashes for cardaio-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3796b1ef45eacce3ebbd8f1d6c2d468f728f1c36037527f88be581652921bc5d
MD5 c54df27884de497dad530a1145107571
BLAKE2b-256 07792f926cdd9d586b335d0108be52f965c8a7eb35ad54056227f0411e167ef7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page