1pip install pywhatkit
2import pywhatkit
3pywhatkit.sendwhatmsg('+91 9807685671', 'SENDING MESSAGES USING PYWHATKIT', 6,06)
4
1#install pywhatkit by using pip install pywhatkit command in
2import pywhatkit
3pywhatkit.sendwhatmsg(phone_number,Message,At_what_hour_to_send_this_message)
1from wappdriver import WhatsApp
2with WhatsApp() as bot:
3 bot.send('Python', # name of recipient
4 'I love Python') # message
5
6# or
7
8import pywhatkit as kit
9
10kit.sendwhatmsg("+49*********", "I love Python!", 18, 21)