Easily provide synchronous compatibility for your Python asynchronous functions
Everytime I provide a Python package to my user, I'm expected to provide both sync version and async version API at the same time.
But I don't want to always duplicate implementations for both synchronous and asynchronous versions of the same thing, and think out two name for each of them, as it is a waste of time, and far from DRY.
I hope there is some magic which can turn my asynchronous function implementations into synchronous versions, so I can write once and get both of them.
I call this magic @sync_compatible
here, your decorated function f
can be called via both await f(x)
(in a asynchronous context) or f(x).wait()
(in a synchronous context).
- Expose a single function name for both async and sync version
- Automatic provide a sync version from your async function definition (via Metaprogramming)
- Lightweight, pure python, and no dependencies
- Complex cases such as list comprehensions, nested function definitions are also supported, feel free to write your pythonic code.
- Strict type annotation are contained, and validated by pylance the strict mode. all type information is kept here
- Unit tests contained, and test coverage ratio is monitored
pip install easy-sync
or
poetry add easy-sync
from (pypi)
from easy_sync import sync_compatible
@sync_compatible
async def async_add(a: int, b: int) -> int:
await asyncio.sleep(1)
return a + b
print(async_add(1, 2).wait())
This will generate a sync version code of your async function, the logic is:
- Replaces all
await f(...)
statements intof(...).wait()
- Replaces all
await asyncio.sleep(...)
statements intotime.sleep(...)
.
For other cases, you might need to define a wrapper for yourself, via The Manual Usage of @sync_compatible
Tips
- Extra decorators is ignored in the generated sync function, since they are written for async functions and probably not works on sync functions, keep them might cause unexpected error. If you really need them, please use The Manual Usage and add decorators manually.
- If you got
.wait() method not found
issues when use the@sync_compatible
decorator with extra decorators, try lift this outer
Instead of automatic generate the sync version, you are allowed to provide the sync function manually, and expose a single name to users.
This is useful to define your own wrapper, or cover some special cases the automatic usage cannot handle.
from easy_sync import sync_compatible
@sync_compatible(sync_fn = _sync_fetch_url)
async def fetch_url(url: str) -> str:
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
return await response.text()
def _sync_fetch_url(url: str) -> str:
return requests.get(url).text
@sync_compatible
async def get_data() -> str:
return await fetch_url("https://site.name/path")
print(get_data().wait())
You can use nix develop .
or poetry shell
under the project root to enter the develop environment.
Run unit tests via pytest
, or run pytest --cov=src
for coverage report.