[PR #1121] [CLOSED] Add aiochan #1003

Closed
opened 2025-11-06 13:07:11 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/vinta/awesome-python/pull/1121
Author: @zh217
Created: 9/12/2018
Status: Closed

Base: masterHead: master


📝 Commits (1)

📊 Changes

1 file changed (+1 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)

📄 Description

What is this Python project?

aiochan is a concurrency library that is used on top of the built-in library asyncio. It provides channels together with put, get and select operations on them as its concurrency primitives, thus enabling CSP-style concurrency programs to be written (like in Go or in Clojure's core.async). In additions to lots of convenient methods and functions which enable easy-to-read and easy-to-write concurrent dataflow, there are also methods provided that can overcome python's GIL restriction in order to fully utilise all CPU cores on a single machine.

What's the difference between this Python project and similar ones?

None of the libraries already listed is similar to this one. Compared to those that are not listed (such as python-csp, aiochannel and aiostream), they do not enable the full CSP-style programming (usually they do not provide select, which must be implemented inside the channel), or they are not actively maintained at all and do not work well with the newest python versions.

--

Anyone who agrees with this pull request could vote for it by adding a 👍 to it, and usually, the maintainer will merge it when votes reach 20.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/vinta/awesome-python/pull/1121 **Author:** [@zh217](https://github.com/zh217) **Created:** 9/12/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`46f8350`](https://github.com/vinta/awesome-python/commit/46f8350c5ac46f77c1db76a0e95857c6a856bb18) Add aiochan ### 📊 Changes **1 file changed** (+1 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) </details> ### 📄 Description ## What is this Python project? [aiochan](https://github.com/zh217/aiochan) is a concurrency library that is used on top of the built-in library [asyncio](https://docs.python.org/3/library/asyncio.html). It provides channels together with `put`, `get` and `select` operations on them as its concurrency primitives, thus enabling CSP-style concurrency programs to be written (like in Go or in Clojure's core.async). In additions to lots of convenient methods and functions which enable easy-to-read and easy-to-write concurrent dataflow, there are also methods provided that can overcome python's GIL restriction in order to fully utilise all CPU cores on a single machine. ## What's the difference between this Python project and similar ones? None of the libraries already listed is similar to this one. Compared to those that are not listed (such as [python-csp](https://github.com/futurecore/python-csp), [aiochannel](https://github.com/tbug/aiochannel) and [aiostream](https://github.com/vxgmichel/aiostream)), they do not enable the full CSP-style programming (usually they do not provide `select`, which must be implemented inside the channel), or they are not actively maintained at all and do not work well with the newest python versions. -- Anyone who agrees with this pull request could vote for it by adding a :+1: to it, and usually, the maintainer will merge it when votes reach **20**. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-06 13:07:11 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-python#1003