Impress Your Crush with a WhatsApp Auto Message Bot Using Python 💬❤️
Want to do something sweet, geeky, and memorable for your girlfriend or crush? Imagine sending her 100 "I Miss You ❤️" messages — all automated with just a few lines of code. Sounds cool, right? Let me show you how to build a simple WhatsApp Auto Message Bot using Python!
This isn’t just a prank — it’s a cute way to surprise someone (only if she’s okay with it 😄). Whether it’s Valentine's Day, her birthday, or a random night when you miss her — this script is your secret wingman!
You can find the complete source code on GitHub here:
👉 github.com/AmitDas4321/WhatsApp-Auto-Message
⚠️ First, a Quick Disclaimer
This project is made for educational and personal use only. Never use it to spam or disturb anyone — always get consent and respect her boundaries. Make her smile, not annoyed! 😊
💡 What You’ll Need
Before you charm your crush with code, make sure you have the following:
- 💻 A laptop or desktop (Windows/macOS/Linux)
- 🐍 Python 3 installed
- 📄 Any text editor (like VS Code)
- 🌐 Internet access and a WhatsApp Web login
- 🧩 Python module: pyautogui
📦 Installation
Open your terminal or command prompt and run:
pip install pyautogui
💌 The Magic Code
Here’s a sweet little script to flood her inbox (with love, not spam 😜):
import pyautogui import time import pyperclip # Required to copy message with emoji to clipboard def send_whatsapp_bot(): try: print("⏳ You have 10 seconds to open WhatsApp Web and select the chat where messages should be sent...") time.sleep(10) message = "I miss you ❤️"
for i in range(1000): pyperclip.copy(message) # Copy message to clipboard pyautogui.hotkey("ctrl", "v") # Paste the message pyautogui.press("enter") # Press Enter to send time.sleep(0.1) # Slight delay to avoid freezing or detection except KeyboardInterrupt: pass # Just silently stop without printing anything # Run the function send_whatsapp_bot()
Note: You can change the message to anything — like “Good Night, Princess 🌙” or “You’re Beautiful 💖”. Just keep it sweet and respectful.
▶️ How to Use It
1. Open WhatsApp Web.
2. Select your crush's chat (👀 no stalking).
3. Run the Python script:python whatsapp_bot.py
4. Watch the love-bot in action! 💘
🛑 Stop Anytime
If she suddenly replies “STOP!”, you better hit Ctrl + C
to stop the bot immediately. Consent is 🔑.
✨ Customize It for Extra Cuteness
Try switching messages for special occasions:
message = "Happy Birthday, Angel 🎂💖"
for i in range(1000): pyperclip.copy(message) # Copy message to clipboard pyautogui.hotkey("ctrl", "v") # Paste the message pyautogui.press("enter") # Press Enter to send time.sleep(0.1) # Slight delay to avoid freezing or detection
Or maybe...
message = "Thinking about you right now 😘"
for i in range(1000): pyperclip.copy(message) # Copy message to clipboard pyautogui.hotkey("ctrl", "v") # Paste the message pyautogui.press("enter") # Press Enter to send time.sleep(0.1) # Slight delay to avoid freezing or detection
👨💻 Who Made This?
This lovely idea was brought to you by Amit Das — a developer who believes in the power of love and code 💻❤️. You can explore the project on GitHub:
👉 github.com/AmitDas4321/WhatsApp-Auto-Message
Check out more cool tools and projects at amitdas.site.
📸 Want to Show Off?
Take a screenshot or record a screen video and show her how you did it (and how much effort you put into it!). Geeky is the new romantic, after all 😉
🚀 Final Words
Impressing your crush doesn’t always need flowers or chocolates — sometimes, a little bit of Python can do wonders. Build it, personalize it, and make her smile. 💌
But remember: keep it classy, not creepy. If she’s into tech, you’ve just earned a bonus point 😉
You must be logged in to post a comment.