A simple future-based async library for python.
Project description
duet
A simple future-based async library for python
Duet takes inspiration from the amazing trio library and the structured concurrency approach to async programming that it uses. However, duet differs from trio in two major ways:
-
Instead of a full-blown implementation of asynchronous IO, duet relies on the
Future
interface for parallelism, and provides a way to run async/await coroutines around thoseFuture
s. This is useful if you are using an API that returns futures, such as RPC libraries like gRPC. The standardFuture
interface does not implement__await__
directly, soFuture
instances must be wrapped induet.AwaitableFuture
. -
duet is re-entrant. At the top level, you run async code by calling
duet.run(foo)
. Insidefoo
suppose you call a function that has not yet been fully refactored to be asynchronous, but itself callsduet.run(bar)
. Most async libraries, includingtrio
andasyncio
, will raise an exception if you try to "re-enter" the event loop in this way, but duet allows it. We have found that this can simplify the process of refactoring code to be asynchronous because you don't have to completely separate the sync and async parts of your codebase all at once.
Installation
Install from pypi:
pip install duet
Note
duet is not an official Google project.
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
Hashes for duet-0.2.8.dev0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf5dd19fd5bc99369d636332fd7ca8587a83ccf981f19aba634cb07f5e6cb273 |
|
MD5 | f39a71d0f9087d7758a343bd5955dd63 |
|
BLAKE2b-256 | c178a121a5426839e07456259b4b0fef1e8cf5cf2ac991f9da19de3102d08dfa |