Skip to main content

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

Project description

# asyncio-ipython-magic [![Requirements Status](https://requires.io/github/Gr1N/asyncio-ipython-magic/requirements.svg?branch=master)](https://requires.io/github/Gr1N/asyncio-ipython-magic/requirements/?branch=master) [![PyPI](https://img.shields.io/pypi/v/asyncio-ipython-magic.svg)](https://pypi.python.org/pypi/asyncio-ipython-magic) [![Supported Python versions](https://img.shields.io/pypi/pyversions/asyncio-ipython-magic.svg)](https://pypi.python.org/pypi/asyncio-ipython-magic)

An extension for [IPython](https://ipython.org) that help to run AsyncIO code in your interactive session.

Based on [Gist](https://gist.github.com/takluyver/b9663b08ac9a4472afa6).

## Installation

Install `asyncio-ipython-magic` using [pip](http://www.pip-installer.org/):

$ pip install asyncio-ipython-magic

...or directly from the repository using the `%install_ext` magic command:

$ In[1]: %install_ext https://raw.githubusercontent.com/Gr1N/asyncio-ipython-magic/master/asynciomagic.py

Enjoy!

## Usage

In [1]: %load_ext asynciomagic

In [2]: import asyncio

In [3]: import time

In [4]: async def foo():
...: i = 0
...: while i < 3:
...: print('time =', time.time())
...: i += 1
...: await asyncio.sleep(2)
...:

In [5]: %%asyncio
...: await foo()
...:
time = 1478985421.307329
time = 1478985423.309606
time = 1478985425.31514

In [6]:

## Testing

It just works, I hope.

## License

*asyncio-ipython-magic* is licensed under the MIT license. See the license file for details.

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

asyncio-ipython-magic-0.0.1.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

asyncio_ipython_magic-0.0.1-py2.py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 2 Python 3

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