Skip to main content

Define an async_magic for IPython that fake the async keyword at top level

Project description

IPython Async_magic

Async at the top level repl !

In [1]: import aiohttp

In [2]: res = await aiohttp.get('https://api.github.com')
  File "<ipython-input-2-52b78a6e45a0>", line 1
    res = await aiohttp.get('https://api.github.com')
                      ^
SyntaxError: invalid syntax


In [3]: %load_ext async_magic

In [4]: res = %await aiohttp.get('https://api.github.com')

In [5]: await res.json()
Out[5]:
{'authorizations_url': 'https://api.github.com/authorizations',
 'code_search_url': 'https://api.github.com/search/code?q={query}{&page,per_page,sort,order}',
 'commit_search_url': 'https://api.github.com/search/commits?q={query}{&page,per_page,sort,order}',
 'current_user_authorizations_html_url': 'https://github.com/settings/connections/applications{/client_id}',
 'current_user_repositories_url': 'https://api.github.com/user/repos{?type,page,per_page,sort}',
 'current_user_url': 'https://api.github.com/user',
 'emails_url': 'https://api.github.com/user/emails',
 'emojis_url': 'https://api.github.com/emojis',
 ...
}

Note the % on assignments in res = %await aiohttp.get('https://api.github.com')

Change loop:

Use %loop <loop>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

async_magic-0.0.1-py3-none-any.whl (31.0 kB view details)

Uploaded Python 3

File details

Details for the file async_magic-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for async_magic-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b06816f8acbb6fed85436ae15853bb076cf48efa8a61db28bcdeb4a95dbf2915
MD5 9f3d814553d8d9350d0f2e9aad9b765d
BLAKE2b-256 4a35a75af81d556c59e9dc66cd84062cb9c2b84712d67dfd277e7f8e2b992cd0

See more details on using hashes here.

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