- threading --- スレッドベースの並列処理
.†
- Pythonでマルチスレッド処理
- https://qiita.com/konnyakmannan/items/2f0e3f00137db10f56a7 (webarchive)
pythonでスレッドを扱うにはthreadingモジュールを利用する. threadingモジュールでスレッドを扱うには二つの方法がある.
threading.Threadのサブクラスを作る. threading.Threadのインスタンスを作る.
- https://qiita.com/konnyakmannan/items/2f0e3f00137db10f56a7 (webarchive)
- Pythonで並列化を学んでみる(マルチスレッド偏)
- [Python] スレッドで実装する