Ben bir komut dosyası var ve bir işlevi diğeri ile aynı zamanda çalıştırmak istiyorum.
Baktığım örnek kod:
import threading
def MyThread (threading.thread):
# doing something........
def MyThread2 (threading.thread):
# doing something........
MyThread().start()
MyThread2().start()
Bu işi yaparken sorun yaşıyorum. Bu bir sınıf yerine bir dişli işlevi kullanarak devam etmeyi tercih ederim.
Bu çalışma betiğidir:
from threading import Thread
class myClass():
def help(self):
os.system('./ssh.py')
def nope(self):
a = [1,2,3,4,5,6,67,78]
for i in a:
print i
sleep(1)
if __name__ == "__main__":
Yep = myClass()
thread = Thread(target = Yep.help)
thread2 = Thread(target = Yep.nope)
thread.start()
thread2.start()
thread.join()
print 'Finished'