With the help of which module is it better to organize everything a separate stream, which will be asynchronously updating the data in the parent stream to a specific stop at a certain time interval? Preferably with an example

  • I chose threading.Thread for myself with setDaemon (True). How justified is this? - LiGhT_WoLF

1 answer 1

I do not know how in 3.2 but in 2.x to achieve multithreading (which worked asynchronously) it was required to use multiprocessing.

Shl

More about why not threading

A good read will be helpful.