awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
agronholm avatar

agronholm/anyio

0
View on GitHub↗
2,481 نجوم·210 تفرعات·Python·MIT·4 مشاهدات

Anyio

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

Features

  • Alternative Runtimes - High-level concurrency framework supporting multiple backends.
  • Asynchronous Programming - High-level framework for asynchronous concurrency and networking.

سجل النجوم

مخطط تاريخ النجوم لـ agronholm/anyioمخطط تاريخ النجوم لـ agronholm/anyio

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

بدائل مفتوحة المصدر لـ Anyio

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع Anyio.
  • python-trio/trioالصورة الرمزية لـ python-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

    Pythonasyncasync-awaitio
    عرض على GitHub↗7,280
  • dabeaz/curioالصورة الرمزية لـ dabeaz

    dabeaz/curio

    4,126عرض على GitHub↗

    Curio is a Python library for structured concurrency and asynchronous network programming. It serves as a framework for handling thousands of simultaneous TCP connections using non-blocking sockets and high-throughput I/O. The library organizes asynchronous operations into a hierarchy of parent and child coroutines to ensure reliable termination and cleanup of dependent tasks. It provides a toolkit for coordinating these concurrent operations through the use of task groups and timeouts. The framework covers a broad range of concurrency management capabilities, including inter-task communicat

    Python
    عرض على GitHub↗4,126
  • dagrs-dev/dagrsالصورة الرمزية لـ dagrs-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

    Rustasyncconcurrentdag
    عرض على GitHub↗478
  • async-rs/async-stdالصورة الرمزية لـ async-rs

    async-rs/async-std

    4,068عرض على GitHub↗

    async-std is a Rust asynchronous runtime and non-blocking I/O library. It serves as an asynchronous standard library, providing a set of alternatives to the core Rust library for managing concurrent tasks, networking, and file system access. The project implements a standard-library-mirrored API, offering asynchronous versions of existing synchronous types to maintain a familiar interface. This approach allows for asynchronous Rust development using an interface that reflects the ergonomics of the language's standard library. The runtime includes a task executor for scheduling and executing

    Rustasyncasync-awaitasync-rust
    عرض على GitHub↗4,068
عرض جميع البدائل الـ 23 لـ Anyio→

الأسئلة الشائعة

ما هي وظيفة agronholm/anyio؟

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

ما هي الميزات الرئيسية لـ agronholm/anyio؟

الميزات الرئيسية لـ agronholm/anyio هي: Alternative Runtimes, Asynchronous Programming.

ما هي البدائل مفتوحة المصدر لـ agronholm/anyio؟

تشمل البدائل مفتوحة المصدر لـ agronholm/anyio: python-trio/trio — Trio is an asynchronous I/O runtime and concurrency library for Python. It provides a system for executing… dabeaz/curio — Curio is a Python library for structured concurrency and asynchronous network programming. It serves as a framework… dagrs-dev/dagrs — High-performance, Rust-based asynchronous task programming framework implementing Flow-Based Programming for scalable… dpc/mioco — [no longer maintained] Scalable, coroutine-based, fibers/green-threads for Rust. (aka MIO COroutines). fastapi/asyncer — Asyncer, async and await, focused on developer experience. async-rs/async-std — async-std is a Rust asynchronous runtime and non-blocking I/O library. It serves as an asynchronous standard library,…