|
| 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