Python Forum
How to run multiple threads properly
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to run multiple threads properly
#2
import threading

def csv2xlsx(file_name):
    # procces the csv
    # save the xlsx

_ = [threading.Thread(target=csv2xlsx, args=(file_name,)).start() for file_name in files_list]
Something like that? I've never used threading module but I tried to put together something looking at the docs a minute ago. Hope this will work.
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Messages In This Thread
RE: How to run multiple threads properly - by wavic - Dec-22-2017, 07:38 AM
RE: How to run multiple threads properly - by mpd - Dec-22-2017, 12:41 PM
RE: How to run multiple threads properly - by wavic - Dec-22-2017, 02:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Trying to separate a loop across multiple threads stylingpat 0 2,148 May-05-2021, 05:21 PM
Last Post: stylingpat
  Get average of multiple threads Contra_Boy 1 23,065 May-05-2020, 04:51 PM
Last Post: deanhystad
  stop multiple threads jeuvrey 5 4,579 Nov-15-2018, 01:34 PM
Last Post: jeuvrey
  Quitting multiple threads MuntyScruntfundle 3 3,438 Oct-17-2018, 05:14 AM
Last Post: volcano63

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020