Skip to main content

deasync decorator to make async functions/methods synchronous.

Project description

deasync provides a decorator called `deasync` for Python 3.5 (or higher) to make async functions synchronous in places where only synchronous functions are expected, for example in `unittest.TestCase`:

.. code:: python
from asyncio import sleep
from unittest import TestCase
from deasync import deasync


async def function42():
await sleep(0.001)
return 42


class TestFunction42(TestCase):
@deasync
async def test_function42(self):
result = await function42()
self.assertEquals(42, result)

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

deasync-1.0.0-py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 3

Supported by

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