Skip to main content

A library to help automate the creation of universal python libraries

Project description

universalasync

CI Codecov PyPI version Read the Docs

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

universalasync-0.5.1.0.tar.gz (77.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

universalasync-0.5.1.0-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file universalasync-0.5.1.0.tar.gz.

File metadata

  • Download URL: universalasync-0.5.1.0.tar.gz
  • Upload date:
  • Size: 77.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for universalasync-0.5.1.0.tar.gz
Algorithm Hash digest
SHA256 6f84e602709df1f22484593a3a334b428b8d8ad15fc25d4a70a1dfab68a86d4d
MD5 49309f3a574c9539cfdcf0b557ea2838
BLAKE2b-256 a75e6714ec7dff29969dae6095bd291f004cc6605701a8274bd658e3069d5da4

See more details on using hashes here.

Provenance

The following attestation bundles were made for universalasync-0.5.1.0.tar.gz:

Publisher: release.yml on bitcart/universalasync

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file universalasync-0.5.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for universalasync-0.5.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 595f917012419a3b9f1131de168158b20d98fbb49b9ebfb7d6bbddf3c894a02b
MD5 b34e9c31b8909ca4b15851d345ba0fc7
BLAKE2b-256 2b85b6ede5d78b35281408ecf4db687659d6a4f9132d2e16f8e9e429a84bb0f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for universalasync-0.5.1.0-py3-none-any.whl:

Publisher: release.yml on bitcart/universalasync

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page