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
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file async_magic-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: async_magic-0.0.1-py3-none-any.whl
- Upload date:
- Size: 31.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b06816f8acbb6fed85436ae15853bb076cf48efa8a61db28bcdeb4a95dbf2915 |
|
MD5 | 9f3d814553d8d9350d0f2e9aad9b765d |
|
BLAKE2b-256 | 4a35a75af81d556c59e9dc66cd84062cb9c2b84712d67dfd277e7f8e2b992cd0 |