Skip to main content

Create a sync version of an async function

Project description

make-it-sync

This very simple library helps provide a synchronous interface for your python async functions and class methods.

Introduction

from asyncio import sleep
from make_it_sync import make_sync

async def simple_func(a: int) -> int:
    'Simple sleeper function to test calling mechanics'
    await sleep(0.01)
    return a + 1


t_wrap = make_sync(simple_func)
print (t_wrap(4))

# Prints out 5

It works by running an async event loop and executing the function. It will use the current thread if no loop is running, otherwise it will create a new thread and run the function there.

Features:

  1. Will wrap a stand-alone function
  2. All arguments (keyword and positional) are passed
  3. Instance methods on classes may be wrapped
  4. Abstract methods are correctly handled.

Usage

To install pip install make-it-async.

The make_sync function creates a new function that will call the function you pass to it:

async def simple_func(a: int) -> int:
    'Simple sleeper function to test calling mechanics'
    await sleep(0.01)
    return a + 1


t_wrap = make_sync(simple_func)

You may treat t_wrap as a python function. You could use make_sync as a function decorator, though that isn't the normal usage as that would hid the async version of the function. Normally, make_sync is used to provide a non-async, alternate, version of the function.

It is also possible to use make_sync with abstract functions:

class abc_base(ABC):
    @abstractmethod
    async def doit_async(self):
        raise NotImplementedError()

    doit = make_sync(doit_async)

class abc_derived(abc_base):
    async def doit_async(self):
        return 42

a = abs_derived()
print(a.doit())
# Will print out 42

The abstract dispatch will occur at runtime and the call to doit_async will be pulled from the the sub-class. This allows you to define the asynchronous API in an ABC, and build a common set of synchronous methods.

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

make_it_sync-2.1.1.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

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

make_it_sync-2.1.1-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file make_it_sync-2.1.1.tar.gz.

File metadata

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

File hashes

Hashes for make_it_sync-2.1.1.tar.gz
Algorithm Hash digest
SHA256 47fe27b34537f9e3b09a869b6e0e7c723026cfc3e12087d8e248bf55506ced28
MD5 b152893bd8143a6fb8c196ed9f95b291
BLAKE2b-256 9705617b390168a7793930f6a6d93e60e0f54e2561d41026a3692dee6160efbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for make_it_sync-2.1.1.tar.gz:

Publisher: pypi.yaml on gordonwatts/make-it-sync

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

File details

Details for the file make_it_sync-2.1.1-py3-none-any.whl.

File metadata

  • Download URL: make_it_sync-2.1.1-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for make_it_sync-2.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6df05eb8b2b86828bc322c4212ae9ffc0b26fa13ed0faeb1fc3df4955ebf1649
MD5 924a0388a85ea1d9d60140b56e90f02b
BLAKE2b-256 731efa8b7aa26dc3ec89b065ec51c8510c7d27365d8f40ce0d28725c7879f981

See more details on using hashes here.

Provenance

The following attestation bundles were made for make_it_sync-2.1.1-py3-none-any.whl:

Publisher: pypi.yaml on gordonwatts/make-it-sync

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