Context manager for asyncio event loop.
Project description
- Info:
Context loop.
Features
Work with sync and async frameworks
Schedule tasks to existing loop or create new one
No need to understand how async works
No callbacks required
Run async tasks whenever and wherever you want
Installation
pip install context-loop
Documentation
Read full documentation at http://context-loop.readthedocs.io/en/stable/
Quick Example
>>> async def coro():
... return await something_from_future()
...
>>> import cl.Loop
>>> with cl.Loop(coro(), coro(), coro()) as loop:
... result = loop.run_until_complete()
...
>>> result
['success', 'success', 'success']
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
context-loop-0.1.1.tar.gz
(26.2 kB
view hashes)