Volo di notte

お勉強の成果メモや日常のこと

夜間飛行へ移行中です

 

2017-02-08から1日間の記事一覧

[Python] MultithreadingとPandas

DDE通信などIO待ち時間が大きい処理をPandasと組み合わせてマルチスレッド化。テンプレだけ作って解説は後日。 # -*- coding: utf-8 -*- from queue import Queue from threading import Thread import pandas as pd class TWorker(Thread): def __init__(se…