Skip to main content

Transform your python code to use async/await (PEP 492)

Project description

[![PyPI](https://img.shields.io/pypi/v/yield2await.svg)](https://pypi.python.org/pypi/yield2await)
![python versions](https://img.shields.io/badge/python-3.5%2C%203.6-blue.svg)
[![license](https://img.shields.io/apm/l/vim-mode.svg)](https://github.com/alxpy/yield2await/blob/master/LICENSE)

# yield2await

Transform your python code from old syntax with `yield from` to use `async`/`await` (PEP 492).

### Usage
```bash
$ pip install yield2await
$ yield2await <path> [-i <ignore-path>]
```

### Before
```python
@asyncio.coroutine
def handler(request):
session = yield from get_session(request)
session['last_visit'] = time.time()
with (yield from self.dbengine) as conn:
ret = yield from conn.execute(query)
user = yield from ret.fetchone()
return web.Response(body=b'OK')
```

### After
```python
async def handler(request):
session = await get_session(request)
session['last_visit'] = time.time()
async with self.dbengine as conn:
ret = await conn.execute(query)
user = await ret.fetchone()
return web.Response(body=b'OK')
```

### Contribution
Feel free to contribute. Just do RP.

### Caution
This is a very alpha, check the changes manually before commit.


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

yield2await-0.0.1a3-py3-none-any.whl (4.4 kB view hashes)

Uploaded 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