bulk whatsapp msg or image sender using python
You can send bulk whatsapp message and images using this code: must you create excel file and fill your phone numbers exlcel's A1 column code link: https://github.com/vikneshG3/bulk-whatsapp-message-sender/blob/main/app.py code : from flask import Flask,render_template,redirect,request import pywhatkit import openpyxl from tkinter import * from tkinter import filedialog times ="V:\python\python_whatsapp_automation\images\LOGO_COCK_1-01-01.png" load = openpyxl.load_workbook("test.xlsx") sheet = load.active window = Tk() window.title('File Explorer') window.geometry("500x500") window.config(background = "white") def browseFiles(): global filename filename = filedialog.askopenfilename(initialdir = "/", title = "Select a File", filetypes = (("image", ".png"), ("all files", "."))) label_file_explo...