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 (Py
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 webscrapping 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")