Capture the return values of concurrently executed trio functions
Project description
trio-future
Overview
trio-future
allows you to capture the return values of concurrently executed trio functions. It's an altnerative to using trio channels to communicate results between tasks that feels more like programming with normal functions.
Consider an example with this simple echo function:
async def echo(a: str) -> str:
await trio.sleep(0.5)
return a
We can call our function and get its result back later when we are ready:
async with trio.open_nursery() as nursery:
# Call trio_future.run to synchronously get back a Future
future = trio_future.run(nursery, echo, "hello")
# When we call `await` and yield to scheduler, our function begins executing
await trio.sleep(0.1)
# We can `await` the function when we are ready
hello = await future.get()
# hello == "hello"
A common use-case is to run several tasks concurrently and wait for them all to complete. trio-future
has a gather
function like asyncio.gather
to do this:
async with trio.open_nursery() as nursery:
fut_1 = run(nursery, echo, "hello")
fut_2 = run(nursery, echo, "world")
# Call `gather` to package the two Futures into a single Future object.
# Note that this is again a synchronous function.
joined_future = gather(nursery, [fut_1, fut_2])
# Again, when we `await` the result, we yield to the scheduler. This time, both
# of our futures will execute concurrently.
hello_world = await join_future.get()
# hello_world = ["hello", "world"]
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 trio-future-0.1.1.tar.gz
.
File metadata
- Download URL: trio-future-0.1.1.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.9.0 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 251d19e60b5129f8812f8b4a421517a4be98fdea2f90bb14c5d55084263d7991 |
|
MD5 | cabe76687885bd0f225774d60969bff2 |
|
BLAKE2b-256 | 5baca08e85ed9906b1551786c5b77d24490ced75bf2ce6ad0fbe53f06fe2fe53 |
File details
Details for the file trio_future-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: trio_future-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.9.0 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 222791e1fd5700ad2422393d98a9c3a23d264ff3058d8a7f263e1ba608e6d898 |
|
MD5 | d6eff7e9d708b849b301146078ad4e3f |
|
BLAKE2b-256 | e428d50c01259d16b0ab7af968f1cc37347cce6f706e3a902f58d7ea17ba99de |