"""
from win32com.client import Dispatch
Dispatch("SAPI.SpVoice").Speak("Espèce de gros con ! Tu n'aurais jamais dû appuyer sur ce bouton. Je vais donc détruire ton ordinateur tout pourri.")

"""

"""
from gtts import gTTS
import os    

tts = gTTS(text="Hello everybody. How are you today ?", lang='en')
tts.save("english.mp3")
os.system("start english.mp3")

tts = gTTS(text="C'est une assez bonne semaine je trouve.", lang='fr')
tts.save("french.mp3")
os.system("start french.mp3")
"""

import pyttsx3
engine = pyttsx3.init()
engine.say("Sac à merde. Je sais que tu te tapes ma femme. Je ne vais donc pas prévoir de catégorie Mathématiques à mes récompenses. Signé : Monsieur Nobel.")
engine.runAndWait()
