We also discussed Python's GIL. The GIL only allows a single thread to execute Python code at a time. - The workaround is multiprocessing, where one process gets its own GIL, so you can actually run ...