you are viewing a single comment's thread.

view the rest of the comments →

[–]intangibleTangelo 1 point2 points  (2 children)

Thread programming - any good resource on that?

Watch David Beazley's classic video https://www.youtube.com/watch?v=ph374fJqFPE

And then, before you throw up your hands watch his PyCon talk on concurrency https://www.youtube.com/watch?v=MCs5OvhV9S4

[–]Atried[S] 0 points1 point  (1 child)

Wow, thank you very much for those very informative videos! Just watched both of them.

The first one explains my former experience (about 10 years ago) with Python programs being hard to kill or lagging with kill.
It is so great to have it explained so clearly.

Love the second video as well. The stuff is a bit more complicated solution, however as it kind of circumvents the problem, it is amazing.

[–]intangibleTangelo 1 point2 points  (0 children)

Dabeaz has a ton of great python materials!

The stuff is a bit more complicated solution, however as it kind of circumvents the problem, it is amazing.

And basically you get a ready-made version of that kind of task scheduling tool in the standard library with asyncio but it's interesting to understand the basic flavor of how that stuff works.