asyncio-ipython-magic icon indicating copy to clipboard operation
asyncio-ipython-magic copied to clipboard

An extension for IPython that help to run AsyncIO code in your interactive session

Results 1 asyncio-ipython-magic issues
Sort by recently updated
recently updated
newest added

For example: ``` In [1]: import asyncio In [2]: l = asyncio.Lock() In [7]: %await_ l # OK In [8]: %await_ l # waits forever, since lock is already taken,...