Python Voice Assistant Tutorial #4 - Date from Speech

preview_player
Показать описание
This python voice assistant tutorial covers how to derive a date from speech, or in this case the text representing speech. Completing this function will allow us to continue to work with the google calendar API and ask our assistant about our schedule.

◾◾◾◾◾
💻 Enroll in The Fundamentals of Programming w/ Python

◾◾◾◾◾◾

⚡ Please leave a LIKE and SUBSCRIBE for more content! ⚡

Tags:
- Tech With Tim
- Python Tutorials
- Python Voice Assistant
- Voice Assistant Python
- Python Google Calendar API

#Python #VoiceAssistant #gTTS
Рекомендации по теме
Комментарии
Автор

2:40 forgot nd for "the second"

Filelor
Автор

MONTHS = ['january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december']
DAYS = ['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday']
DAY_EXTENSIONS = ["nd", "rd", "th", "st"]

HubertRozmarynowski
Автор

can you do a Python Voice Assistant Tutorial - using Google translator api next? please and thank you!

soumya
Автор

Hey Tim, you are awesome!! Just now saw your other videos on the VA tutorial. But I can't seem to install PyAudio. Can you please help me..

harshavardhansivakumar
Автор

Cheers for the video dude, was wondering if you could implement web-scraping based module with this? like, "look up xyz", webscrapes any info on xyz say if its a person, would take their google bio. I've been trying to do it but I keep pulling the incorrect webpage somehow.

thelarry-pk
Автор

For those of you who have a hard time typing all the months of the year, here is a quick list comprehension that you can use:

MONTHS = [datetime.date(2015, num, 1).strftime('%B').lower() for num in range(1, 13)]

krishnans
Автор

I think there should a function of getting events of tomorrow.
Like if say "What do I have plan for tomorrow."

pembatamang
Автор

i think you forgot the month October

Btw keep up the great work !! :)

CptEnder
Автор

Sup can you create an algorithm that identifies a specific users voice

denniswambua
Автор

You should combine all features in a single code

ARreviews_tv
Автор

Can we pass any message on Google assistant from python code???

salmanali-mvxe
Автор

If I'm not wrong, there's a mistake at line 96:
month = MONTHS.index(month) + 1 [Wrong]
month = MONTHS.index(word) + 1 [Correct]

Sklyvan
Автор

if str is '16 july 1997' this is so ez, and if it is '06 07 08' (6th june 2008) ... How can i get it ? i want create a lib to format date to date.

huyenchinguyenthi
Автор

in germany you say 31st of 1st and how can you code this because im to dumb lol

nace
Автор

PLEASE HELP I SAID THIS IN THE LAST VIDEO BUT BASICALL WHEN I TRY TO IMPORT GOOGLEAPICLIENT IT SAYS IT'S NOT INSTALLED SO WHEN I TRY TO INSTALL IT IT SAYS THERE IS NO VERSION COMPATIBLE WITH MY PIP BUT MY PYTHON IS THE SAME VERSION AS YOURS AND SO IS MY PIP

extremetitan
Автор

Nice work mate!
I started a project with this tutorial integrated with the chat bot you taught us some time ago.

maybe the issues can give you some new ideas... looking forward to the next video

ArthurSilvaSens