awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

22 个仓库

Awesome GitHub RepositoriesAsynchronous Programming

Frameworks for concurrent, parallel, and event-driven execution.

Explore 22 awesome GitHub repositories matching part of an awesome list · Asynchronous Programming. Refine with filters or upvote what's useful.

Awesome Asynchronous Programming GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • tokio-rs/tokiotokio-rs 的头像

    tokio-rs/tokio

    32,309在 GitHub 上查看↗

    Tokio is an asynchronous runtime for the Rust programming language, designed to manage and execute concurrent tasks efficiently. It provides a multi-threaded execution environment that schedules lightweight tasks across available processor cores, utilizing a work-stealing scheduler to balance computational load. By employing a poll-based execution model and waker-based notifications, the runtime drives asynchronous operations forward without requiring active polling loops, ensuring efficient resource utilization. The project distinguishes itself through a comprehensive suite of tools for high

    Runtime for building reliable asynchronous applications.

    Rustasynchronousnetworkingrust
    在 GitHub 上查看↗32,309
  • iii-hq/iiiiii-hq 的头像

    iii-hq/iii

    18,238在 GitHub 上查看↗

    iii is a distributed service orchestrator and event-driven workflow engine designed to compose and manage cross-language functions and workers through a central execution engine. It functions as a multi-language service mesh and WebSocket service gateway, providing a persistent communication layer for remote service workers. The platform enables dynamic runtime extensions, allowing new workers and capabilities to be deployed and registered into a live environment without requiring system restarts. It distinguishes itself by offering machine-readable skill exposure and agent capability integra

    Distributed runtime for composing services via worker primitives.

    Rust
    在 GitHub 上查看↗18,238
  • magicstack/uvloopMagicStack 的头像

    MagicStack/uvloop

    11,817在 GitHub 上查看↗

    uvloop is a high-performance replacement for the standard Python event loop. It functions as a drop-in substitute designed to accelerate asynchronous networking tasks and reduce latency in event-driven software systems. The project achieves its performance characteristics by utilizing a Cython-based extension module that wraps the libuv C library. By leveraging low-level system calls for event-driven input and output multiplexing, it manages concurrent network requests and subprocess execution with minimal overhead. The implementation supports scalable backend service development by handling

    High-performance drop-in replacement for the standard asyncio event loop.

    Cythonasyncasync-awaitasync-python
    在 GitHub 上查看↗11,817
  • python-trio/triopython-trio 的头像

    python-trio/trio

    7,280在 GitHub 上查看↗

    Trio is an asynchronous I/O runtime and concurrency library for Python. It provides a system for executing non-blocking network and disk operations through a centralized event loop and task scheduler. The library is built on a structured concurrency model, which ensures that asynchronous tasks are bound to a specific lifetime and cannot outlive the scope that started them. It utilizes a nursery-based task manager to track task lifecycles in a parent-child tree, preventing orphaned concurrent operations by requiring child tasks to be joined before their parent scope exits. The framework cover

    Simplifies async I/O with a structured concurrency model.

    Pythonasyncasync-awaitio
    在 GitHub 上查看↗7,280
  • tokio-rs/miotokio-rs 的头像

    tokio-rs/mio

    7,024在 GitHub 上查看↗

    Mio is a low-level I/O library for Rust that provides an event-driven framework for monitoring multiple network sockets and file descriptors. It acts as a portable wrapper for operating system native polling systems, including epoll, kqueue, and IOCP, allowing applications to trigger events when resources are ready for reading or writing without blocking the execution thread. The library provides a non-blocking socket interface for managing TCP, UDP, and Unix sockets. It distinguishes itself through a vectored I/O implementation, enabling scatter-gather reads and writes across multiple buffer

    Lightweight IO library with minimal OS overhead.

    Rustasynchronousnetworkingnon-blocking
    在 GitHub 上查看↗7,024
  • gevent/geventgevent 的头像

    gevent/gevent

    6,440在 GitHub 上查看↗

    Gevent is a Python coroutine concurrency library and asynchronous task manager designed for high-concurrency I/O tasks. It provides a cooperative networking framework for building asynchronous TCP, UDP, and HTTP servers, as well as a WSGI web server implementation for hosting web applications. The project is distinguished by its standard library monkey-patching tool, which replaces blocking synchronous functions with cooperative versions to enable asynchronous behavior in third-party code. This allows for a cooperative multitasking workflow where the system yields execution during I/O waits t

    Uses coroutines for high-concurrency networking.

    Pythonasynciocoroutinesgreenlet
    在 GitHub 上查看↗6,440
  • twisted/twistedtwisted 的头像

    twisted/twisted

    5,969在 GitHub 上查看↗

    Twisted is an event-driven networking engine for Python that provides a framework for building asynchronous network applications. At its core, it uses a reactor-based event loop to drive all input and output, dispatching callbacks in a single thread without blocking. The library implements a deferred promise chain for composing asynchronous logic, along with a protocol and factory pattern that separates connection state management from protocol handling, enabling reusable handlers for different network protocols. The framework supports multiple event loops across platforms, including select,

    Implements an event-driven networking engine.

    Pythonasyncasync-pythondns
    在 GitHub 上查看↗5,969
  • rust-lang/futures-rsrust-lang 的头像

    rust-lang/futures-rs

    5,870在 GitHub 上查看↗

    Zero-cost asynchronous programming in Rust

    Zero-cost abstractions for asynchronous programming.

    Rustasync-foundations
    在 GitHub 上查看↗5,870
  • async-rs/async-stdasync-rs 的头像

    async-rs/async-std

    4,068在 GitHub 上查看↗

    async-std 是一个 Rust 异步运行时和非阻塞 I/O 库。它作为一个异步标准库,提供了一组核心 Rust 库的替代方案,用于管理并发任务、网络和文件系统访问。 该项目实现了与标准库镜像的 API,提供现有同步类型的异步版本以保持熟悉的接口。这种方法允许使用反映语言标准库人体工程学的接口进行异步 Rust 开发。 该运行时包括一个用于跨多个线程调度和执行异步操作的任务执行器。其功能表面涵盖并发任务执行、非阻塞输入和输出操作以及常规运行时管理。

    Async version of the standard library.

    Rustasyncasync-awaitasync-rust
    在 GitHub 上查看↗4,068
  • agronholm/anyioagronholm 的头像

    agronholm/anyio

    2,481在 GitHub 上查看↗

    High level asynchronous concurrency and networking framework that works on top of either Trio or asyncio

    High-level framework for asynchronous concurrency and networking.

    Pythonasync-awaitasynciotrio
    在 GitHub 上查看↗2,481
  • fastapi/asyncerfastapi 的头像

    fastapi/asyncer

    2,459在 GitHub 上查看↗

    Asyncer, async and await, focused on developer experience.

    Simplifies async and await syntax for better developer experience.

    Pythonanyioasyncasyncio
    在 GitHub 上查看↗2,459
  • xudong-huang/mayXudong-Huang 的头像

    Xudong-Huang/may

    2,394在 GitHub 上查看↗

    rust stackful coroutine library

    Stackful coroutine library for Rust.

    Rust
    在 GitHub 上查看↗2,394
  • python-greenlet/greenletpython-greenlet 的头像

    python-greenlet/greenlet

    1,827在 GitHub 上查看↗

    Lightweight in-process concurrent programming

    Enables lightweight in-process concurrent programming.

    C++
    在 GitHub 上查看↗1,827
  • tqwewe/kameotqwewe 的头像

    tqwewe/kameo

    1,333在 GitHub 上查看↗

    Fault-tolerant async actors for Rust that scale seamlessly

    Fault-tolerant actor system built on Tokio.

    Rust
    在 GitHub 上查看↗1,333
  • dagrs-dev/dagrsdagrs-dev 的头像

    dagrs-dev/dagrs

    478在 GitHub 上查看↗

    High-performance, Rust-based asynchronous task programming framework implementing Flow-Based Programming for scalable directed acyclic graph (DAG) task orchestration

    Flow-based asynchronous task programming framework.

    Rustasyncconcurrentdag
    在 GitHub 上查看↗478
  • zonyitoo/coio-rszonyitoo 的头像

    zonyitoo/coio-rs

    463在 GitHub 上查看↗

    Coroutine I/O for Rust

    Coroutine IO library with work-stealing scheduling.

    Rust
    在 GitHub 上查看↗463
  • aiokitchen/aiomiscaiokitchen 的头像

    aiokitchen/aiomisc

    425在 GitHub 上查看↗

    aiomisc - miscellaneous utils for asyncio

    Collection of miscellaneous utility functions for asynchronous programming.

    Python
    在 GitHub 上查看↗425
  • dpc/miocodpc 的头像

    dpc/mioco

    148在 GitHub 上查看↗

    no longer maintained Scalable, coroutine-based, fibers/green-threads for Rust. (aka MIO COroutines).

    Coroutine-based asynchronous IO handling.

    Rustasyncasynchronouscoroutines
    在 GitHub 上查看↗148
  • teaentitylab/fprustTeaEntityLab 的头像

    TeaEntityLab/fpRust

    124在 GitHub 上查看↗

    Monad/MonadIO, Handler, Coroutine/doNotation, Functional Programming features for Rust

    Functional programming features including coroutines and monads.

    Rust
    在 GitHub 上查看↗124
  • nextest-rs/future-queuenextest-rs 的头像

    nextest-rs/future-queue

    70在 GitHub 上查看↗

    Queue futures to run concurrently, in the order they're spawned, and with global and group limits.

    Stream adaptors for concurrent future execution.

    Rust
    在 GitHub 上查看↗70
上一个12下一个
  1. Home
  2. Part of an Awesome List
  3. Developer Tools
  4. Asynchronous Programming