Python 多线程并发脚本示例

前端之家收集整理的这篇文章主要介绍了Python 多线程并发脚本示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
感兴趣Python 多线程并发脚本示例的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。<br>
 #  编程之家  (jb51.cc) 

#!/usr/bin/python
import threading
import sys
import os
import time
 
def ssh_cmd(ip):
        #定义一个ssh_cmd函数 用于发呆5秒,输出ip
        time.sleep(5)
        print ip
 
def ssh_cmd_spit(list):
        #//定义一个ssh_cmd_spit函数,用于执行分割后的ip列表
        for j in list:
                j = j.strip("\n")
                ssh_cmd(j)
 
def thread_main(count):
#//定义一个thread_main函数,用于设置每个进程处理的IP个数,设置为1,那么1000个IP需要同时开1000个线程,设置为50,那么需要20个线程来同时处理。
        file = open("ip.txt")
        f = file.readlines()
        for i in range(0,len(f),int(count)):
                b = f[i:i+count]
                t = threading.Thread(target=ssh_cmd_spit,args=(b,))   #//添加线程
                t.start()        #//处理线程
 
if __name__ == '__main__':
        thread_main(1)

# End 512.笔记 jb51.cc
 

猜你在找的Python相关文章