How create threads under Python for Delphi -
i'm hosting python script python delphi components inside delphi application. i'd create background tasks keep running script.
is possible create threads keep running if script execution ends (but not host process, keeps going on). i've noticed program gets stuck if executing script ends , there thread running. if i'll wait until thread finished goes fine.
i'm trying use "threading" standard module threads.
python has own threading module comes standard, if helps. can create thread objects using threading module.
the thread module offers low level threading , synchronization using simple lock objects.
again, not sure if helps since you're using python under delphi environment.
Comments
Post a Comment