mirror of
https://github.com/vinta/awesome-python.git
synced 2026-05-06 16:03:36 -05:00
[PR #1121] [CLOSED] Add aiochan #1003
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/vinta/awesome-python/pull/1121
Author: @zh217
Created: 9/12/2018
Status: ❌ Closed
Base:
master← Head:master📝 Commits (1)
46f8350Add aiochan📊 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,getandselectoperations 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.