About 450,000 results
Open links in new tab
  1. How to make simple alarms on Python - Stack Overflow

    Mar 26, 2017 · I'm trying to make a simple alarm using Python but whatever I try it doesn't seem to work. I've just recently made a timer but an alarm would be a little more useful. I'm also pretty new to …

  2. python - Sound alarm when code finishes - Stack Overflow

    Apr 1, 2018 · How can I make the (Python) code sort of sound an "alarm" when it is done? I was contemplating making it play a .wav file when it reaches the end of the code...

  3. How to create automatic alarm system(e.g popup and anything) using …

    Jul 18, 2020 · How to create automatic alarm system (e.g popup and anything) using Python Asked 4 years, 3 months ago Modified 4 years, 3 months ago Viewed 213 times

  4. macos - Python Sound ("Bell") - Stack Overflow

    May 24, 2011 · I'd like to have a python program alert me when it has completed its task by making a beep noise. Currently, I use import os and then use a command line speech program to say …

  5. Alert boxes in Python? - Stack Overflow

    Oct 7, 2008 · Is it possible to produce an alert similar to JavaScript's alert ("message") in python, with an application running as a daemon. This will be run in Windows, Most likely XP but 2000 and Vista are a...

  6. python - Timeout on a function call - Stack Overflow

    Jan 30, 2009 · # Cancel the timer if the function returned before timeout # (ok, mine won't but yours maybe will :) In [7]: signal.alarm(0) Out[7]: 0 10 seconds after the call signal.alarm(10), the handler is …

  7. signal.alarm replacement in Windows [Python] - Stack Overflow

    May 20, 2020 · I have a function that occasionally hangs. Normally I would set an alarm, but I'm in Windows and it's unavailable. Is there a simple way around this, or should I just create a thread that …

  8. most efficient way to implement clock with alarm clock in Python

    Dec 18, 2014 · 0 I am trying to implement a digital clock with alarm clock in Python. Now I am wondering what is the best way to implement the alarm clock functionality. I was able to find several similar …

  9. python - AlarmSystem with the RPi (python3) RuntimeError: Conflicting ...

    Feb 4, 2020 · im trying to make an Alarm Sytsm with the RPi in Python3. but there are two errors that come up after the second attempt. This is the full code (writed in the ThonnyIDE): import RPi.GPIO …

  10. Monitoring system with events in Python - Stack Overflow

    Jun 27, 2017 · I am creating a project in Python and I would like to add a monitoring system that makes use of events and event handlers. I would like this system to be available throughout the project.