async_retrying

Simple retrying for asyncio


Keywords
asyncio
License
MIT
Install
pip install async_retrying==0.2.2

Documentation

async_retrying

info: Simple retrying for asyncio

Installation

pip install async_retrying

Usage

import asyncio

from async_retrying import retry

counter = 0

@retry
@asyncio.coroutine
def fn():
    global counter

    counter += 1

    if counter == 1:
        raise RuntimeError

@asyncio.coroutine
def main():
    yield from fn()

loop = asyncio.get_event_loop()

loop.run_until_complete(main())

assert counter == 2

loop.close()

Python 3.3+ is required