Tech news......🖥
SpaceX files Falcon 9 rocket booster for a record 9th time, delivers 3rd batch of starlink satellites in two weeks.
Share support ✨
SpaceX files Falcon 9 rocket booster for a record 9th time, delivers 3rd batch of starlink satellites in two weeks.
Share support ✨
import speech_recognition as sr
import yagmail
recognizer=sr.Recognizer()
with sr.Microphone() as source:
print('Clearing background noise..')
recognizer.adjust_for_ambient_noise(source,duration=1)
print("waiting for your message...")
recordedaudio=recognizer.listen(source)
print('Done recording..!')
try:
print('Printing the message..')
text=recognizer.recognize_google(recordedaudio,language='en-US')
print('Your message:{}'.format(text))
except Exception as ex:
print(ex)
#Automate mails:
reciever=' Receiver's email id'
message=text
sender=yagmail.SMTP('Sender's email id ')
sender.send(to=reciever,subject='This is an automated mail',contents=message)
import yagmail
recognizer=sr.Recognizer()
with sr.Microphone() as source:
print('Clearing background noise..')
recognizer.adjust_for_ambient_noise(source,duration=1)
print("waiting for your message...")
recordedaudio=recognizer.listen(source)
print('Done recording..!')
try:
print('Printing the message..')
text=recognizer.recognize_google(recordedaudio,language='en-US')
print('Your message:{}'.format(text))
except Exception as ex:
print(ex)
#Automate mails:
reciever=' Receiver's email id'
message=text
sender=yagmail.SMTP('Sender's email id ')
sender.send(to=reciever,subject='This is an automated mail',contents=message)
import speech_recognition as sr
import wikipedia
import pyttsx3
engine=pyttsx3.init()
recognizer=sr.Recognizer()
with sr.Microphone() as source:
print('Clearing background noise...Please wait')
recognizer.adjust_for_ambient_noise(source,duration=1)
print("waiting for your message...")
recordedaudio=recognizer.listen(source)
print('Done recording')
try:
print('Printing your message...Please wait')
text=recognizer.recognize_google(recordedaudio,language='en-US')
print('Your Message:{}',format(text))
except Exception as ex:
print(ex)
#Input data
wikisearch=wikipedia.summary(text)
engine.say(wikisearch)
engine.runAndWait()
import wikipedia
import pyttsx3
engine=pyttsx3.init()
recognizer=sr.Recognizer()
with sr.Microphone() as source:
print('Clearing background noise...Please wait')
recognizer.adjust_for_ambient_noise(source,duration=1)
print("waiting for your message...")
recordedaudio=recognizer.listen(source)
print('Done recording')
try:
print('Printing your message...Please wait')
text=recognizer.recognize_google(recordedaudio,language='en-US')
print('Your Message:{}',format(text))
except Exception as ex:
print(ex)
#Input data
wikisearch=wikipedia.summary(text)
engine.say(wikisearch)
engine.runAndWait()
Python update : Guys when you installed python 3.9.2 version don't try to install Tensorflow package on that version. Please use lower version like ( 3.8.8 ) for installation otherwise it will not support so save your time..👍
Tech news..... 🖥
Tesla's co-founder is teaming up with specialized solve the problm of e-bike batteries.
JB Straubel’s Redwood Materials wants to help recycle the e-bike industry’s batteries.
Share support ✨
Tesla's co-founder is teaming up with specialized solve the problm of e-bike batteries.
JB Straubel’s Redwood Materials wants to help recycle the e-bike industry’s batteries.
Share support ✨
#ykyg :
Did you know?
Google’s first-ever tweet seemed gibberish to all of us who don’t “speak code”.
It read: “I’m 01100110 01100101 01100101 01101100 01101001 01101110 01100111 00100000 01101100 01110101 01100011 01101011 01111001 00001010”
Which means “I’m feeling lucky” when translated to English.
Share support ✨
Did you know?
Google’s first-ever tweet seemed gibberish to all of us who don’t “speak code”.
It read: “I’m 01100110 01100101 01100101 01101100 01101001 01101110 01100111 00100000 01101100 01110101 01100011 01101011 01111001 00001010”
Which means “I’m feeling lucky” when translated to English.
Share support ✨