From 577651c7cfcd0779ea8900e83fae51ad8da0de76 Mon Sep 17 00:00:00 2001 From: Kunal Patil Date: Tue, 11 Oct 2022 19:35:27 +0530 Subject: [PATCH] commit message --- scripts/Whatsapp Automation/Readme.md | 8 ++++++++ scripts/Whatsapp Automation/Whatsapp.py | 24 ++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 scripts/Whatsapp Automation/Readme.md create mode 100644 scripts/Whatsapp Automation/Whatsapp.py diff --git a/scripts/Whatsapp Automation/Readme.md b/scripts/Whatsapp Automation/Readme.md new file mode 100644 index 0000000..fe6b322 --- /dev/null +++ b/scripts/Whatsapp Automation/Readme.md @@ -0,0 +1,8 @@ +# Automate Whatsapp Messages +This simple script will automate whatsapp + +## Usage + +- requires pywhatkit +- Use `pip install pywhatkit` +- Run `python Whatsapp.py` diff --git a/scripts/Whatsapp Automation/Whatsapp.py b/scripts/Whatsapp Automation/Whatsapp.py new file mode 100644 index 0000000..3fafc92 --- /dev/null +++ b/scripts/Whatsapp Automation/Whatsapp.py @@ -0,0 +1,24 @@ + + +import pywhatkit + +# Send a WhatsApp Message to a Contact at 1:30 PM +pywhatkit.sendwhatmsg("+910123456789", "Hi", 13, 30) + +# Same as above but Closes the Tab in 2 Seconds after Sending the Message +pywhatkit.sendwhatmsg("+910123456789", "Hi", 13, 30, 15, True, 2) + +# Send an Image to a Group with the Caption as Hello +pywhatkit.sendwhats_image("AB123CDEFGHijklmn", "Images/Hello.png", "Hello") + +# Send an Image to a Contact with the no Caption +pywhatkit.sendwhats_image("+910123456789", "Images/Hello.png") + +# Send a WhatsApp Message to a Group at 12:00 AM +pywhatkit.sendwhatmsg_to_group("AB123CDEFGHijklmn", "Hey All!", 0, 0) + +# Send a WhatsApp Message to a Group instantly +pywhatkit.sendwhatmsg_to_group_instantly("AB123CDEFGHijklmn", "Hey All!") + +# Play a Video on YouTube +pywhatkit.playonyt("PyWhatKit") \ No newline at end of file