This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pyttsx3 # pip install pyttsx3 | |
| import speech_recognition as sr # pip install speechRecognition | |
| import datetime | |
| import wikipedia # pip install wikipedia | |
| import webbrowser | |
| import os | |
| import smtplib | |
| engine = pyttsx3.init('sapi5') | |
| voices = engine.getProperty('voices') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from logging import exception | |
| import os | |
| import shutil | |
| import time | |
| path = "C:/Users/dhrav/Downloads/Organiser" | |
| files = os.listdir(path) | |
| listOfDirectories = { | |
| 'Picture_Folder': ['jpeg', 'jpg', 'gif', 'png'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import tkinter as tk | |
| from tkinter import * | |
| import math | |
| from functools import reduce | |
| def reverse(s): | |
| str = "" | |
| for i in s: | |
| str = i + str | |
| return str |
NewerOlder