Posts

Showing posts with the label Jarvis

Source code for python programs

How to Setup app-ads.txt file in admob

Image
  AdMob provides a personalized code snippet that makes setting up your app-ads.txt file easier. The customized code snippet includes your publisher ID.  Note that your  publisher ID  must be included and formatted correctly for your app-ads.txt file to be verified.  To get your personalized code snippet, which includes your publisher ID: Sign in to your AdMob account at  https://apps.admob.com . Click  Apps  in the sidebar. Click  All apps . Click the  app-ads.txt  tab. Click  How to set up app-ads.txt .  Click next to the code snippet to copy.  Paste the code snippet into your app-ads.txt file. 

Make your own Jarvis in python

  Make your own jarvis program:  here i give a code for jarvis you can copy or paste the program and use it    //First import all libraries  import pyttsx3 import webbrowser import smtplib import random import speech_recognition as sr import wikipedia import datetime # import wolframalpha import os import sys   // here instiallize the engine object engine = pyttsx3.init('sapi5') voices = engine.getProperty('voices') engine.setProperty('voice', voices[len(voices) - 1].id)   // create speak function   def speak(audio):     print('Computer: ' + audio)     engine.say(audio)     engine.runAndWait()   // create greet function that will greet your user according the time def greetMe():     currentH = int(datetime.datetime.now().hour)     if currentH >= 0 and currentH < 12:         speak('Good Morning!')   ...

Popular posts from this blog

Make your own Jarvis in python

Open the Web browser with speech recognition in python program