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
#3
(Dec-22-2017, 07:38 AM)wavic Wrote:
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.
Thanks for your reply. My functions run like this

def PR01()
    # process file

PR01()
PR02()
PR03()
PR04()
The reason why I am using this approach is because each function is somewhat unique and on each function I receive feedback on how long it took to run. The largest file takes 11 minutes to generate for example. To clarify ; in each function :

1.) file might be be renamed
2.) file might be converted to XLSX
3.) file might be receive a header
4.) file might be autofit
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 cyberion1985 - Dec-22-2017, 08:20 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 1,753 May-05-2021, 05:21 PM
Last Post: stylingpat
  Get average of multiple threads Contra_Boy 1 21,660 May-05-2020, 04:51 PM
Last Post: deanhystad
  stop multiple threads jeuvrey 5 3,557 Nov-15-2018, 01:34 PM
Last Post: jeuvrey
  Quitting multiple threads MuntyScruntfundle 3 2,769 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