Slides

parallel-python-slides.pdf ↗︎

Additional notes

Subinterpreter imports

The main module is easy: import _subinterpreters. To get queues and channels, you currently have to do this! from test.support.interpreters import queues, channels

Eric Snow's plan is to iterate on cross-interpreter communication in the interpreters-pep-734 package, so you should soon be able to do pip install interpreters-pep-734 and from interpreters import queues, channels.

Example: subinterpreter queues