This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step 1: Download Azure CLI here - https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest | |
Step 2: Add the Azure DevOps extension | |
az extension add --name azure-devops | |
Step 3: Login to DevOps. | |
az login | |
Step 4: Configure defaults | |
az devops configure --defaults organization=https://dev.azure.com/<ORGANIZATION_NAME> project=<PROJECT_NAME> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think you're right, all the time. I think you're beautiful. I think you're good. | |
I think you're right, but not always. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import speech_recognition as sr | |
import playsound | |
from gtts import gTTS | |
def speak(text): | |
tts = gTTS(text=text, lang="en") | |
filename = "voice.mp3" | |
tts.save(filename) | |
print("playing..." + text) |