如何使用 Python 多线程处理列表中字典参数?
多线程处理列表中字典参数
针对需要使用多线程传递字典参数执行函数的情况,我们可以利用python提供的threadpoolexecutor线程池高效地完成此任务。
实现步骤
导入 nécessaire 库:
import timefrom concurrent.futures import threadpoolexecutorimport 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 地址打印为线程名称。执行结果如下所示:
立即学习“Python免费学习笔记(深入)”;
Thread-4 192.168.1.2Thread-2 192.168.1.3Thread-1 192.168.1.4Thread-4 192.168.1.5Thread-2 192.168.1.6