
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
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 those Future
s. This is useful if you are using an API that
returns futures, such as RPC libraries like gRPC. The standard Future
interface does not implement __await__
directly, so Future
instances must
be wrapped in duet.AwaitableFuture
.
duet is re-entrant. At the top level, you run async code by calling
duet.run(foo)
. Inside foo
suppose you call a function that has not yet
been fully refactored to be asynchronous, but itself calls duet.run(bar)
.
Most async libraries, including trio
and asyncio
, 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.
Install from pypi:
pip install duet
duet is not an official Google project.
FAQs
A simple future-based async library for python.
We found that duet demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.