Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit b645b28

Browse files
Added New Script (WhatsApp Auto Messenger)
Send and schedule a message in WhatsApp by only seven lines of Python Script.
1 parent b43c38e commit b645b28

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
"""
2+
WhatsApp Auto Messenger
3+
- Send message to your friend or group by using just 7 lines of Python Script
4+
"""
5+
6+
import pywhatkit
7+
phoneno = input("Enter Receiver(recipient) Phone Number :")
8+
message = input("Enter Message You want to send :")
9+
print("Enter Schedule Time to send WhatsApp message to recipient :")
10+
Time_hrs = int(input("- At What Hour :"))
11+
Time_min = int(input("- At What Minutes :"))
12+
pywhatkit.sendwhatmsg(phoneno, message, Time_hrs, Time_min)
13+
14+
# Tip : Do you want to send and schedule a messages to any WhatsApp group then use below code and provide inside attributes value.
15+
16+
# pywhatkit.sendwhatmsg_to_group(GroupID, message, time_hour, time_min, wait_time)
17+
18+
# Note : Group ID is something that is in its invite link,

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /