|
| 1 | +# Python Multiprocessing Jump-Start |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | +* <https://github.com/SuperFastPython/PythonMultiprocessingJumpStart> |
| 6 | + |
| 7 | +This repository provides all source code for the book: |
| 8 | + |
| 9 | +* **Python Multiprocessing Jump-Start**: _Develop Parallel Programs, Side-Step the GIL, and Use All CPU Cores_, Jason Brownlee, 2022. |
| 10 | + |
| 11 | + |
| 12 | +## Source Code |
| 13 | +You can access all Python .py files directly here: |
| 14 | + |
| 15 | +* [src/](src/) |
| 16 | + |
| 17 | +### Book Blurb |
| 18 | + |
| 19 | +> Unlock parallel Python programming (and run your code on all CPUs). |
| 20 | +> |
| 21 | +> The multiprocessing module provides easy-to-use process-based concurrency in Python. |
| 22 | +> |
| 23 | +> Unlike Python threading, multiprocessing side-steps the infamous Global Interpreter Lock (GIL), allowing full parallelism in Python. |
| 24 | +> |
| 25 | +> This is not some random third-party library, this is an API provided in the Python standard library (already installed on your system). |
| 26 | +> |
| 27 | +> This is the API you need to use to make your code run faster. |
| 28 | +> |
| 29 | +> There's just one problem. Few developers know about it (or how to use it well). |
| 30 | +> |
| 31 | +> Introducing: "Python Multiprocessing Jump-Start". A new book designed to teach you the multiprocessing module in Python, super fast! |
| 32 | +> |
| 33 | +> You will get a fast-paced, 7-part course to get you started and make you awesome at using the multiprocessing API. |
| 34 | +> |
| 35 | +> Each of the 7 lessons was carefully designed to teach one critical aspect of the multiprocessing module, with explanations, code snippets and worked examples. |
| 36 | +> |
| 37 | +> Each lesson ends with an exercise for you to complete to confirm you understand the topic, a summary of what was learned, and links for further reading if you want to go deeper. |
| 38 | +> |
| 39 | +> Stop copy-pasting code from StackOverflow answers. |
| 40 | +> |
| 41 | +> Learn Python concurrency correctly, step-by-step. |
0 commit comments