Tagged Questions
0
votes
1answer
44 views
Pause one thread from other in python
I was looking how to do a multithread (2 threads) in python.
I want one of them is reading the serial port constantly. reading every frame and saving them to a database. I already have done a script ...
2
votes
1answer
80 views
Is it possible to pause a python script till file is not in use?
I have a python script which updates some values in a file. This script may be used by more than 1 users, which means that file will be updated by multiple users. But 2 users shouldn't update the file ...
1
vote
6answers
606 views
How to pause a python script running in terminal
I have a web crawling python script running in terminal for several hours, which is continuously populating my database. It has several nested for loops. For some reasons I need to restart my computer ...
0
votes
2answers
698 views
How to pause Python while Tkinter window is open?
I'm writing a program that sometimes encounters an error. When it does, it pops up a Tkinter dialog asking the user whether to continue. It's a more complicated version of this:
keep_going = False
...