Everything about multithreading in python
###youtube
Libraries for concurrent and parallel execution.
- concurrent.futures - (Python standard library) Process-based "threading" interface.
- multiprocessing - (Python standard library) A high-level interface for asynchronously executing callables.
- eventlet - Asynchronous framework with WSGI support.
- gevent - A coroutine-based Python networking library that uses greenlet.
- SCOOP - Scalable Concurrent Operations in Python.
- uvloop - Ultra fast implementation of asyncio event loop on top of libuv.
- Tomorrow - Magic decorator syntax for asynchronous code.