WhatsApp Web Automation Library using selenium.
It is a Simple WhatsApp Web Automation Library using selenium.
pip install whatsapp-auto
whatsapp-auto officially supports Python 3.7+.
import whatsapp_auto
whatsapp = whatsapp_auto.Login() # Scan the qr code
whatsapp.send_message(phone_no,message) # whatsapp.send_message('+919372091360','hii')
whatsapp.send_file(phone_no,file_path,caption) # whatsapp.send_file('+919372091360','/Users/anish/Desktop/whatsapp/Image.png','image')
whatsapp.send_multiple_files(phone_no,folder_path,caption) # whatsapp.send_multiple_files('+919372091360','/Users/anish/Desktop/whatsapp/','image')
whatsapp.send_message_to_group(group_link,message) # whatsapp.send_message_to_group('J6iHb0tR0ky5lJITHLV03b','hi')
whatsapp.send_file_to_group(group_link,file_path,caption) # whatsapp.send_file_to_group('J6iHb0tR0ky5lJITHLV03b','/Users/anish/Desktop/image.png')
whatsapp.send_multiple_files_to_group(group_link,folder_path,caption) # whatsapp.send_multiple_files_to_group('J6iHb0tR0ky5lJITHLV03b','/Users/anish/Desktop/whatsapp/')
whatsapp.close()