'structured concurrent `trio`-"actors"' https://github.com/goodboy/tractor
Go to file
Tyler Goodlet 8054bc7c70 Support "infected asyncio" actors
This is an initial solution for #120.

Allow spawning `asyncio` based actors which run `trio` in guest
mode. This enables spawning `tractor` actors on top of the `asyncio`
event loop whilst still leveraging the SC focused internal actor
supervision machinery. Add a `tractor.to_syncio.run()` api to allow
spawning tasks on the `asyncio` loop from an embedded (remote) `trio`
task and return or stream results all the way back through the `tractor`
IPC system using a very similar api to portals.

One outstanding problem is getting SC around calls to
`asyncio.create_task()`. Currently a task that crashes isn't able to
easily relay the error to the embedded `trio` task without us fully
enforcing the portals based message protocol (which seems superfluous
given the error ref is in process). Further experiments using `anyio`
task groups may alleviate this.
2020-07-24 16:48:06 -04:00
docs Set correct master doc name 2020-02-10 12:26:19 -05:00
examples Move two more examples out of docs for testing 2020-02-10 12:14:16 -05:00
tests Search for guard and strip instead of hardcoding 2020-02-10 12:59:44 -05:00
tractor Support "infected asyncio" actors 2020-07-24 16:48:06 -04:00
.gitignore Initial commit 2018-07-05 16:01:15 -04:00
.travis.yml Fix typo 2020-01-31 12:04:13 -05:00
LICENSE Initial commit 2018-07-05 16:01:15 -04:00
README.rst Drop sphinx toctree from readme 2020-02-10 12:14:16 -05:00
mypy.ini Add mypy.ini lel 2020-01-21 15:28:12 -05:00
requirements-test.txt More mypy apeasement on 3.7 2020-01-15 21:06:13 -05:00
setup.py Add trio-run-in-process` as dep 2020-01-21 10:28:32 -05:00

README.rst

tractor

A structured concurrent, async-native "actor model" built on trio and multiprocessing.

travis Documentation Status

tractor is an attempt to bring trionic structured concurrency to distributed multi-core Python; it aims to be the Python multi-processing framework you always wanted.

tractor lets you spawn trio "actors": processes which each run a trio scheduled task tree (also known as an async sandwich). Actors communicate by exchanging asynchronous messages and avoid sharing any state. This model allows for highly distributed software architecture which works just as well on multiple cores as it does over many hosts.

The first step to grok tractor is to get the basics of trio down. A great place to start is the trio docs and this blog post.

Install

No PyPi release yet!

pip install git+git://github.com/goodboy/tractor.git

Feel like saying hi?

This project is very much coupled to the ongoing development of trio (i.e. tractor gets all its ideas from that brilliant community). If you want to help, have suggestions or just want to say hi, please feel free to ping me on the trio gitter channel!