datetime
import wikipedia
import os
import pyttsx3
mic = sr.Microphone()
s = pyttsx3.init()
list_mic = sr.Microphone.list_microphone_names()
r = sr.Recognizer()
def glav():
with sr.Microphone() as source:
print("Привет! Я могу открыть какой-то сайт или сказать какая сегодня дата!Спроси меня!\n1.Открой сайт\n2.Найди в яндекс\n3.Википедия и скажи что\n4.Могу тебе сказать какая сегодня дата или время")
audio = r.listen(source)
text = r.recognize_google(audio, language = 'ru-RU')
s.say("Ты сказал: " + text)
check(text)
def check(text):
if "Открой сайт" in text:
url = text.split()
url = url[2]
webbrowser.open(url)
elif "дата"or 'Дата' in text:
today = date.today()
print("Сегодня :", today)
elif "время" in text:
current_time = datetime.now().time()
print(current_time)
elif "Википедия" in text:
text = text.replace('Википедия', '')
getwiki(text)
elif 'выключи компьютер' in text:
os.system( "shutdown /s /t 1" )
elif 'найди в яндекс' or 'найди в яндексе'or 'Найди в яндекс' in text:
text = text.split()
text = text[3]
webbrowser.open('https://yandex.ru/search/?lr=1&text='+text)
else:
print('')
#https://yandex.ru/search/?lr=1&text=as
else:
print("Ты сказал: " + text)
def getwiki(text):
print('\n'*100)
wikipedia.set_lang("ru")
print(wikipedia.page(text).summary)
glav()
Большие куски кода нужно заливать на pastebin
Вики парсишь?
не только
Обсуждают сегодня