Tagged Questions
1
vote
3answers
191 views
How can I catch a system suspend event in Python?
I'm using ubuntu 12.04. Is there a way to catch a suspend event in Python, i.e. if the laptop is going to suspend, do this...? The same question for catching shutdown event.
1
vote
2answers
258 views
Set a script to suspend and resume after a calculated amount of time
Updated below:
I have a script which has a function I made that calculates the time to set my script to sleep for based on a few factors, which means the script might not need to run again for a half ...
2
votes
5answers
476 views
Suspend / Hibernate pc with python
I'd like to write a short python script that puts my computer to sleep. I'Ve already searched the API but the only result on suspend has to do with delayed execution. What function does the trick ?
0
votes
2answers
726 views
Does a Python threading.Condition.wait() suspend execution immediately?
If I call wait() on a python condition variable, does the calling thread suspend execution and yield or does it keep blocking until the next context switch?
0
votes
3answers
219 views
Suspending function calls in Python for passing later (functional paradigm)
I'm writing a python command line program which has some interdependent options, I would like for the user to be able to enter the options in whichever order they please.
Currently I am using the ...