Skip to main content

Coroutines without an event loop

Project description

https://github.com/ntessore/coroutines/actions/workflows/test.yml/badge.svg https://codecov.io/gh/ntessore/coroutines/graph/badge.svg?token=A6L220NL3Y

This is a small package which provides tools to run async functions and generators without an asyncio event loop.

The coroutines module provides functions such as coroutines.run(), coroutines.gather(), and coroutines.sleep() that work just like their asyncio counterparts, but without scheduling any tasks in an external event loop. For example, the following code was adapted from the asyncio documentation:

import coroutines

async def factorial(name, number):
    f = 1
    for i in range(2, number + 1):
        print(f"Task {name}: Compute factorial({number}), currently i={i}...")
        await coroutines.sleep()  # CHANGED: no argument
        f *= i
    print(f"Task {name}: factorial({number}) = {f}")
    return f

async def main():
    # Schedule three calls *concurrently*:
    L = await coroutines.gather(
        factorial("A", 2),
        factorial("B", 3),
        factorial("C", 4),
    )
    print(L)

coroutines.run(main())

# Expected output:
#
#     Task A: Compute factorial(2), currently i=2...
#     Task B: Compute factorial(3), currently i=2...
#     Task C: Compute factorial(4), currently i=2...
#     Task A: factorial(2) = 2
#     Task B: Compute factorial(3), currently i=3...
#     Task C: Compute factorial(4), currently i=3...
#     Task B: factorial(3) = 6
#     Task C: Compute factorial(4), currently i=4...
#     Task C: factorial(4) = 24
#     [2, 6, 24]

The example produces the same result as the asyncio code by simply calling, suspending, and resuming the coroutines until they are completed. Practically, the only difference between the coroutines and asyncio examples is that coroutines.sleep() does not take an argument. Because there is no external event loop, a call to coroutines.sleep() cannot suspend the current chain of coroutines for a fixed amount of time, but only until it is resumed at the next iteration.

Running coroutines

coroutines.run(coro) #

Run a coroutine from synchronous code.

Suspending coroutines

coroutine coroutines.sleep() #

Suspend the current chain of coroutines, allowing another coroutine to run concurrently.

Concurrent execution

coroutine coroutines.gather(*coros, close_on_error=True) #

Run the coroutines coros concurrently.

Returns a coroutine that loops over coros, running each coroutine in turn until it is suspended or finished. Execution is suspended after each pass over coros, so that other coroutines can run while the result of gather() is awaited.

The result of awaiting gather() is the aggregate list of returned values.

If close_on_error is true, all coroutines are closed if an exception occurs while gather() is awaited. Otherwise, the coroutines are left as they are when the exception is raised.

Creating awaitables

The coroutines module contains a number of helper functions that turn regular objects into awaitable variants of themselves.

coroutine coroutines.awaitable(obj=None) #

Create an awaitable variant of obj. Returns a coroutine that returns obj and immediately calls coroutines.sleep().

coroutine coroutines.aiterable(iterable) #

Create an awaitable variant of an iterable. Returns an asynchronous generator that yields every item in iterable and immediately calls coroutines.sleep() after each.

coroutine coroutines.arange(stop) #
coroutine coroutines.arange(start, stop[, step])

Create an awaitable variant of range(). Returns an asynchronous generator that yields every integer in the range and immediately calls coroutines.sleep() after each.

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

coroutines-0.2.0.tar.gz (5.6 kB view hashes)

Uploaded Source

Built Distribution

coroutines-0.2.0-py3-none-any.whl (4.6 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