python 线程池使用范例

threadpool的使用。

参考大神翻译http://gashero.yeax.com/?p=44


代码部分

#step 2 解析列车信息
def parserTrainCode():

    trains = traincodes.keys()

    _pool = ThreadPool(10)
    requests = makeRequests( parserTrainWithCode,  trains )
    [_pool.putRequest(req) for req in requests]
    _pool.wait()


你可能感兴趣的:(web,python)