├── Building an Alexa Skill in 30 minutes using Python.JPG ├── README.md └── Alexa App.py /Building an Alexa Skill in 30 minutes using Python.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pik1989/Alexa/HEAD/Building an Alexa Skill in 30 minutes using Python.JPG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Build your own Alexa in just 30 minutes 2 | 3 | 🔴 Follow this video for the code walkthrough: 4 | 5 | [![Alt text](https://raw.githubusercontent.com/pik1989/Alexa/main/Building%20an%20Alexa%20Skill%20in%2030%20minutes%20using%20Python.JPG)](https://www.youtube.com/watch?v=fXRbnSWJVJY) 6 | 7 | # Creating Alexa Web Application in just 20 minutes 8 | 9 | ### 🔴 Follow this video for the code walkthrough: 10 | 11 | [![Alt text](https://user-images.githubusercontent.com/34673684/121652434-39662000-cace-11eb-81ae-ecff52538ece.png)](https://www.youtube.com/watch?v=LOkOWyJcEoE) 12 | 13 | 14 | # For Part 2 Code: Visit https://github.com/pik1989/Alexa-FlaskAPI/ 15 | -------------------------------------------------------------------------------- /Alexa App.py: -------------------------------------------------------------------------------- 1 | 2 | #Importing Libraries 3 | import speech_recognition as sr 4 | import pyttsx3 5 | import pywhatkit 6 | import datetime 7 | import wikipedia 8 | import pyjokes 9 | import requests, json , sys 10 | #PyAudio 11 | #PyWhatKit 12 | #PyJokes 13 | #Wikipedia 14 | #OpenweatherApi 15 | 16 | listener = sr.Recognizer() 17 | 18 | engine = pyttsx3.init() 19 | voices = engine.getProperty("voices") 20 | engine.setProperty('voice', voices[1].id) 21 | 22 | def engine_talk(text): 23 | engine.say(text) 24 | engine.runAndWait() 25 | 26 | def weather(city): 27 | # Enter your API key here 28 | api_key = "