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
Futureinterface for parallelism, and provides a way to run async/await coroutines around thoseFutures. This is useful if you are using an API that returns futures, such as RPC libraries like gRPC. The standardFutureinterface does not implement__await__directly, soFutureinstances must be wrapped induet.AwaitableFuture. -
duet is re-entrant. At the top level, you run async code by calling
duet.run(foo). Insidefoosuppose you call a function that has not yet been fully refactored to be asynchronous, but itself callsduet.run(bar). Most async libraries, includingtrioandasyncio, 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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file duet-0.2.9.tar.gz.
File metadata
- Download URL: duet-0.2.9.tar.gz
- Upload date:
- Size: 24.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.8.3 requests/2.28.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6fa39582e6a3dce1096c47e5fbcbda648a633eed94a38943e68662afa2587f3
|
|
| MD5 |
45374b25cda1be268c2309224868ecfd
|
|
| BLAKE2b-256 |
c7b8ef7c1a8a515d5195970ba5fdf420400052346873d3370de75f8b97e413bd
|
File details
Details for the file duet-0.2.9-py3-none-any.whl.
File metadata
- Download URL: duet-0.2.9-py3-none-any.whl
- Upload date:
- Size: 29.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.8.3 requests/2.28.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a16088b68b0faee8aee12cdf4d0a8af060ed958badb44f3e32f123f13f64119a
|
|
| MD5 |
fe740d4e86a20efd57dc6e8565f334e8
|
|
| BLAKE2b-256 |
be9503c8215f675349ff719cb44cd837c2468fdc0c05f55f523f3cad86bbdcc6
|