A CSP Python library based on Clojure core.async. ChanPy implements equivalents for all the functions in core.async and provides channels that can be used with or without asyncio. ChanPy even provides support for applying transformations across channels in the same way Clojure does, via transducers.
Documentation is hosted at https://chanpy.readthedocs.io/
Python 3.7 or greater.
Available on PyPI:
pip3 install chanpy
Apache License 2.0
- Clojure core.async for providing one of the best CSP designs of all time.
- aiochan for proving how well asyncio can be used with Clojure flavored CSP.