Last updated:
0 purchases
asyncifypython 2.1.0
A python library with helpful things to be used with asyncio!
Documentation
https://asyncify.readthedocs.io/en/latest/
Installation
Python 3.7 or higher is required
$ pip install -U asyncify-python
Example
import asyncify
import requests
@asyncify.asyncify_func
def get(url: str) -> str:
return requests.get(url).text
# `get` is no longer a blocking function
# it is now a coroutine function
async def main():
text = await get('https://python.org')
# this is very useful to turn a blocking library into an async library
get = asyncify(requests.get)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.