DEV Community

Cover image for Use WhatsApp com Python com nosso Package de maneira simples e totalmente local
Marco antonio
Marco antonio

Posted on

Use WhatsApp com Python com nosso Package de maneira simples e totalmente local

This project is a WhatsApp automation bot developed using Selenium WebDriver. The bot provides various functionalities such as logging in, sending messages, sending media, and checking for new messages on WhatsApp Web.

acess repository

Features

  • Login Automation: Automatically logs into WhatsApp Web and persists session data.
  • Message Sending: Send text messages and media (images/videos) to specific contacts.
  • Chat Management: Open chats by contact name and navigate through chats.
  • QR Code Generation: Generates QR codes for WhatsApp Web login.
  • Message Retrieval: Retrieve the last message from a chat.
  • New Message Notifications: Check for new messages and handle notifications.

Installation

To use this bot, follow these steps:

  1. Clone the Repository:

    git clone https://github.com/marco0antonio0/py-connector-whatsapp-unofficial
    cd py-connector-whatsapp-unofficial
    
  2. Install Dependencies:
    Ensure you have Python installed. Then install the required Python packages:

    pip install selenium webdriver-manager pillow
    
  3. Generate QR Code Module:
    Create a generateQRcode.py file with a function createQRCODE to generate QR codes.

  4. Configure WebDriver:
    Ensure you have the Chrome browser installed. The webdriver-manager package will handle the WebDriver installation.

Usage

  1. Initialize the Bot:

    from bot import botWhatsapp
    # with interface = true
    #without interface = false // terminal acess
    bot = botWhatsapp(gui=False)
    
  2. Start the Bot:

    bot.start()
    
  3. Send a Message:

    bot.openChatByContact("Contact Name")
    bot.sendMensage("Hello, this is a test message!")
    
  4. Send an Image with Text:

    bot.sendImageWithText("path/to/image.jpg", "Here is an image with a caption!")
    
  5. Check for New Messages:

    new_message = bot.VerificarNovaMensagem()
    if new_message:
        print("New message from:", new_message)
    
  6. Retrieve Last Message:

    last_message = bot.pegar_ultima_mensagem()
    print("Last message:", last_message)
    
  7. Exit the Bot:

    bot.exit()
    

Project Structure

py-connector-whatsapp-unofficial/

├── bot.py # Main bot class and functionalities
├── generateQRcode.py # QR code generation module
├── requirements.txt # List of dependencies
├── README.md # Project documentation
└── dados/ # Directory to store session data
Enter fullscreen mode Exit fullscreen mode

Contributing

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Commit your changes (git commit -m 'Add new feature').
  4. Push to the branch (git push origin feature-branch).
  5. Open a Pull Request.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Acknowledgements

Contact

For any questions or suggestions, feel free to open an issue or contact me at marcomesquitajr@hotmail.com.

Top comments (0)