A decorator to recycle tasks in the event loop
pip install aiorecycle
import asyncio
import aiorecycle
@aiorecycle.cycle()
async def task():
if asyncio.get_event_loop().time() % 2 == 0:
print('make some periodic work')
async def main():
await task()
await asyncio.sleep(3) # emulate very important work
if __name__ == "__main__":
asyncio.run(main())
aiorecycle
library is offered under Apache 2 license.