The latest version of Python, 3.5, implements the async
and await
keywords for asynchronous coroutines. I am beginning to get my head around them, and I understand that there is a distinction between concurrency and parallelism. Nonetheless, they are related and very often you can do concurrent tasks in parallel.
Hence, I am wondering: is there any way to use the new async
and await
features to do actual parallelism?