171

I am in a situation where my code takes extremely long to run and I don't want to be staring at it all the time but want to know when it is done.

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...

Is this even a feasible idea? If so, how could I do it?

martineau
  • 99,260
  • 22
  • 139
  • 249
mtigger
  • 1,907
  • 2
  • 13
  • 17

11 Answers11

282

On Windows

import winsound
duration = 1000  # milliseconds
freq = 440  # Hz
winsound.Beep(freq, duration)

Where freq is the frequency in Hz and the duration is in milliseconds.

On Linux and Mac

import os
duration = 1  # seconds
freq = 440  # Hz
os.system('play -nq -t alsa synth {} sine {}'.format(duration, freq))

In order to use this example, you must install sox.

On Debian / Ubuntu / Linux Mint, run this in your terminal:

sudo apt install sox

On Mac, run this in your terminal (using macports):

sudo port install sox

Speech on Mac

import os
os.system('say "your program has finished"')

Speech on Linux

import os
os.system('spd-say "your program has finished"')

You need to install the speech-dispatcher package in Ubuntu (or the corresponding package on other distributions):

sudo apt install speech-dispatcher
Alex Lamson
  • 367
  • 4
  • 13
Ryan Saxe
  • 14,833
  • 19
  • 66
  • 116
  • 1
    right You have to download it, I'll give you the link, let me find it...I just posted another one for macs that will actually speak to you, so it can tell you when it's done – Ryan Saxe May 15 '13 at 19:30
  • thanks! do you happen to know if linux has one that will speak to you too? – mtigger May 15 '13 at 22:39
  • 2
    mine says that say is not found, even though i've installed sox and play works. but i've found an alternative. import os os.system('espeak "your program has finished"') – mtigger May 17 '13 at 11:04
  • winsound isn't found. Is it not available for OS X? – Charlie Parker Jul 05 '16 at 21:37
  • 1
    @CharlieParker, if you look at the full answer, the first option is only for windows users. The others state how to on other environments, which includes OSX – Ryan Saxe Jul 07 '16 at 22:29
  • absolutely love the OSX one :D – natronite Jul 28 '16 at 21:11
  • Linux Mint 17.3 Rosa - this works! os.system('play --no-show-progress --null --channels 1 synth %s sine %f' % ( a, b) – litepresence Mar 10 '17 at 16:59
  • I think it's worth adding in this post, for Windows and winsound you need not worry about Beep frequency and duration. Just using winsound.MessageBeep() will be enough. – poulter7 Apr 04 '17 at 21:43
  • TIL I can make my computer talk using the os package! So awesome!! – marty331 Jan 23 '19 at 15:22
37
print('\007')

Plays the bell sound on Linux. Plays the error sound on Windows 10.

Stevoisiak
  • 16,510
  • 19
  • 94
  • 173
Josh Allemon
  • 718
  • 6
  • 8
33

This one seems to work on both Windows and Linux* (from this question):

def beep():
    print("\a")

beep()

In Windows, can put at the end:

import winsound
winsound.Beep(500, 1000)

where 500 is the frequency in Herz
      1000 is the duration in miliseconds

To work on Linux, you may need to do the following (from QO's comment):

  • in a terminal, type 'cd /etc/modprobe.d' then 'gksudo gedit blacklist.conf'
  • comment the line that says 'blacklist pcspkr', then reboot
  • check also that the terminal preferences has the 'Terminal Bell' checked.
Saullo G. P. Castro
  • 49,101
  • 22
  • 160
  • 223
17

ubuntu speech dispatcher can be used:

import subprocess
subprocess.call(['speech-dispatcher'])        #start speech dispatcher
subprocess.call(['spd-say', '"your process has finished"'])
Ishan Khare
  • 1,519
  • 23
  • 50
11

Kuchi's answer didn't work for me on OS X Yosemite (10.10.1). I did find the afplay command (here), which you can just call from Python. This works regardless of whether the Terminal audible bell is enabled and without a third-party library.

import os
os.system('afplay /System/Library/Sounds/Sosumi.aiff')
zekel
  • 8,396
  • 10
  • 61
  • 94
10

I'm assuming you want the standard system bell, and don't want to concern yourself with frequencies and durations etc., you just want the standard windows bell.

import winsound
winsound.MessageBeep()
poulter7
  • 1,286
  • 13
  • 20
9

Why use python at all? You might forget to remove it and check it into a repository. Just run your python command with && and another command to run to do the alerting.

python myscript.py && 
    notify-send 'Alert' 'Your task is complete' && 
    paplay /usr/share/sounds/freedesktop/stereo/suspend-error.oga

or drop a function into your .bashrc. I use apython here but you could override 'python'

function apython() {
    /usr/bin/python $*
    notify-send 'Alert' "python $* is complete"
    paplay /usr/share/sounds/freedesktop/stereo/suspend-error.oga
}
rtaft
  • 1,449
  • 12
  • 27
6

See: Python Sound ("Bell")
This helped me when i wanted to do the same.
All credits go to gbc

Quote:

Have you tried :

import sys
sys.stdout.write('\a')
sys.stdout.flush()

That works for me here on Mac OS 10.5

Actually, I think your original attempt works also with a little modification:

print('\a')

(You just need the single quotes around the character sequence).

Community
  • 1
  • 1
Kuchi
  • 3,085
  • 3
  • 27
  • 36
4

It can be done by code as follows:

import time
time.sleep(10)   #Set the time
for x in range(60):  
    time.sleep(1)
    print('\a')
Satyendra Yadav
  • 137
  • 3
  • 14
2
import subprocess

subprocess.call(['D:\greensoft\TTPlayer\TTPlayer.exe', "E:\stridevampaclip.mp3"])
Du Peng
  • 305
  • 2
  • 3
  • 2
    You should add some comments or other explanation for this code to explain how it works and why it answers the question. – skrrgwasme May 02 '16 at 17:55
0

A bit more to your question.

I used gTTS package to generate audio from text and then play that audio using Playsound when I was learning webscraping and created a coursera downloader(only free courses).

text2speech = gTTS("Your course " + course_name +
                                " is downloaded to " + downloads + ". Check it fast.")
text2speech.save("temp.mp3")
winsound.Beep(2500, 1000)
playsound("temp.mp3")
barny
  • 5,280
  • 4
  • 16
  • 21
Vishesh Mangla
  • 556
  • 6
  • 16