如何使用 Python 多线程处理列表中字典参数?
多线程处理列表中字典参数
针对需要使用多线程传递字典参数执行函数的情况,我们可以利用python提供的threadpoolexecutor线程池高效地完成此任务。
实现步骤
-
导入 nécessaire 库:
import time from concurrent.futures import threadpoolexecutor import threading
-
定义执行函数:
定义一个名为 dosome 的函数,其中包含要针对字典参数执行的实际逻辑。 -
创建线程池:
使用 threadpoolexecutor(max_workers=thread_count) 创建一个线程池,其中 thread_count 为希望创建的线程数量。 -
提交任务:
对于列表中的每个字典,使用 executor.submit(dosome, **m) 将一个任务提交给线程池,其中 **m 扩展了字典参数以作为函数参数。 -
启动线程池:
线程池将自动开始执行提交的任务。
示例代码
my_list = [{'ip': '192.168.1.2', 'password': '123456', 'user_name': '654321'}, ...] def dosome(ip, password, user_name): tname = threading.current_thread().getname() time.sleep(1) print(f'{tname} {ip}') tpe = threadpoolexecutor(max_workers=3) for m in my_list: tpe.submit(dosome, **m)
执行结果
此代码将创建3个线程,并将字典参数中的 ip 地址打印为线程名称。执行结果如下所示:
Thread-4 192.168.1.2 Thread-2 192.168.1.3 Thread-1 192.168.1.4 Thread-4 192.168.1.5 Thread-2 192.168.1.6