Skip to main content

Michael Corleone says ...

Project description

https://travis-ci.org/bninja/coid.png https://coveralls.io/repos/bninja/ciao/badge.png

Simple resource throttling. Get it:

$ pip install coid

use it e.g. like:

import datetime

import ciao
import sqlalchemy as sa

db_engine = sa.create_engine('postgres://mikey:corleone@localhost/study')

db_throttle = ciao.Throttle(
  duration=datetime.timedelta(seconds=30),
  exc=(
      sa.exc.OperationalError,
      sa.exc.DisconnectionError,
      sa.exc.InvalidRequestError,
      sa.exc.InterfaceError,
      sa.exc.DatabaseError,
      sa.exc.DBAPIError,
  ),
)

if not db_throttle:
   with db_throttle:
      db_engine.execute('SELECT * FROM slippers WHERE name = "mine"')

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

ciao-0.1.0.tar.gz (2.7 kB view hashes)

Uploaded Source

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