A library to help automate the creation of universal python libraries
Project description
universalasync
A library to help automate the creation of universal python libraries
Overview
Have you ever been frustrated that you need to maintain both sync and async versions of your library, even thought their code differs by just async and await? You might have came up to rewriting your code before release or other unreliable solutions.
This library helps you to focus only on the main async implementation of your library: sync one will be created automatically
Via decorating all your public methods, the wrapped functions automatically detect different conditions and run the functions accordingly.
If user uses your library in async context, minimal overhead is added, it just returns the coroutine right away.
Otherwise the library calls the coroutine via various loop methods, like as if you did it manually.
There should be no issues at all, the only limitation is that signals and async subprocesses are supported only when running in the main thread.
Also note that when run from a different os thread, the library will create a new event loop there and run coroutines.
This means that you might need to adapt your code a bit in case you use some resources bound to a certain event loop (like aiohttp.ClientSession
).
You can see an example of how this could be solved here
For API reference see the docs
Installation
pip install universalasync
Example of usage
# wrap needed methods one by one
class Client:
@async_to_sync_wraps
async def help():
...
@async_to_sync_wraps
@property
async def async_property():
...
# or wrap whole classes
@wrap
class Client:
async def help(self):
...
@property
async def async_property():
...
client = Client()
def sync_call():
client.help()
client.async_property
async def async_call():
await client.help()
await client.async_property
# works in all cases
sync_call()
asyncio.run(async_call())
threading.Thread(target=sync_call).start()
threading.Thread(target=asyncio.run, args=(async_call(),)).start()
Copyright and License
Copyright (C) 2021 MrNaif2018
Universal async-sync wrapper initially based on this implementation
Licensed under the MIT license
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 Distribution
Built Distribution
File details
Details for the file universalasync-0.3.1.2.tar.gz
.
File metadata
- Download URL: universalasync-0.3.1.2.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72271f3b35bc3bd6e72cab125d2cf19f178386c66d3c47e39bc2ddc4de974f6c |
|
MD5 | 22aa76746145d2ba34c3238b115e73f8 |
|
BLAKE2b-256 | 753154edc90fa94904046297eeef30878d271e21c1c1dcad18b75bbcbb58ade6 |
File details
Details for the file universalasync-0.3.1.2-py3-none-any.whl
.
File metadata
- Download URL: universalasync-0.3.1.2-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5324996827402e1b509ca200b324615cb0b50f1f82f11afaf538533355a34d45 |
|
MD5 | ae764ae8c7e83b77361860872f90de95 |
|
BLAKE2b-256 | 534a4d25b3debdc02cf5b2dfc4d7a8698309c5ffd72ea5b77e9e1723771a2957 |