Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • A awesome-python
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 13
    • Issues 13
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 317
    • Merge requests 317
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Vinta Chen
  • awesome-python
  • Merge requests
  • !1121

Add aiochan

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/zh217/master into master Sep 12, 2018
  • Overview 0
  • Commits 1
  • Pipelines 0
  • Changes 1

Created by: zh217

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.

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/zh217/master