threading
Python 中的多线程适合 I/O 密集型任务,而不适合计算密集型任务。
Python 提供两组多线程接口,一是 thread 模块 _thread,提供低等级接口。
二是 threading 模块,提供更容易使用的基于对象的接口,可以继承 Thread 对象来实现线程,此外其还提供了其它线程相关的对象,例如 Timer,Lock 等。
asyncio
asyncio这个库是python 3.4中协程的一个函数。
asyncio 是干什么的?
https://www.cnblogs.com/zhaof/p/8490045.html
异步网络操作
并发
协程
multi-processing 多进程
multi-processing和threading之间的区别见以下链接:
https://www.cnblogs.com/vamei/archive/2012/10/12/2721484.html