my problem starts here:
pyttsx and gTTS module errors
gTTS works well, takes text from text file, but first creates mp3 file, then if I want listen, I must call
webbrowser should be part of you standard python install. Check if there is a webbrowser.py under C:\Your_Python_Folder\Lib.
webbrowser
webbrowser.py
C:\Your_Python_Folder\Lib
Below code works just fine for me as webbrowser.py is present at above mentioned folder.
import webbrowser webbrowser.open("rec.mp3")