top of page
Image by Tengyart

Send WhatsApp messages with just 2 lines of Python code, Python WhatsApp automation

PyWhatKit is a simple and powerful WhatsApp automation library with many useful features. In this tutorial, we are going to explore this library and will learn to send WhatsApp messages using this tool.



Features

  • Sending a Message to a WhatsApp Group or Contact

  • Sending Image to a WhatsApp Group or Contact

  • Converting an Image to ASCII Art

  • Converting a String to Handwriting

  • Playing YouTube Videos

  • Sending Mails with HTML Code

  • Install and Use

Installation

Type the following command in your terminal to install the pywhatkit library.

pip install pywhatkit

Send a message on WhatsApp

import pywhatkit 
pywhatkit.sendwhatmsg("+910123456789", "Hi", 13, 30)

From the above 2 lines of code, we can send messages on WhatsApp. Above code sends a WhatsApp Message to a Contact at 1:30.


Other features

import pywhatkit

# 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")

For more advantages and new features of pywhatkit, read the documentation here.



23 views0 comments
bottom of page