How to write a WhatsApp bot in Python?

How to write a WhatsApp bot in Python - briefly?

Creating a WhatsApp bot in Python involves using the Twilio API, which allows you to send and receive messages programmatically. First, set up a Twilio account and obtain your Account SID and Auth Token. Then, install the Twilio library for Python using pip: pip install twilio. With these steps completed, you can start coding your bot by initializing the Twilio client and defining message handling logic.

How to write a WhatsApp bot in Python - in detail?

Creating a WhatsApp bot using Python involves several steps, from setting up the development environment to implementing the bot's functionalities. This guide will walk you through the process in detail, ensuring that you understand each component and can effectively build your own WhatsApp bot.

Setting Up Your Development Environment

First, ensure that you have Python installed on your system. You can download it from the official website if it's not already installed. Additionally, you will need to set up a virtual environment to manage dependencies more efficiently:

python -m venv myenv

source myenv/bin/activate # On Windows use `myenv\Scripts\activate`

pip install twilio

Creating a Twilio Account

Twilio is a popular platform for building communication applications. You will need to create an account on Twilio and get your API credentials:

  1. Go to the Twilio website.
  2. Sign up for a new account.
  3. Once logged in, navigate to the Console and find your Account SID and Auth Token.
  4. Purchase a phone number that supports WhatsApp messaging.

Installing Required Libraries

Install the Twilio library using pip:

pip install twilio

Writing the Bot Code

Now, let's write the code for your WhatsApp bot. Create a new Python file (e.g., whatsapp_bot.py) and add the following code:

from twilio.rest import Client

# Your Account SID and Auth Token from twilio.com/console

account_sid = 'your_account_sid'

auth_token = 'your_auth_token'

client = Client(account_sid, auth_token)

def send_message(to, body):

message = client.messages.create(

to=f"whatsapp:{to}",

from_="whatsapp:+14155238886", # Your Twilio WhatsApp number

body=body

)

print(message.sid)

if __name__ == "__main__":

phone_number = "your_phone_number" # The recipient's phone number

message_body = "Hello from your WhatsApp bot!"

send_message(phone_number, message_body)

Running Your Bot

Save the file and run it:

python whatsapp_bot.py

This will send a message to the specified phone number using your Twilio WhatsApp number.

Extending Functionality

To make your bot more interactive, you can integrate it with webhooks or use a more advanced framework like Flask for handling user input and providing dynamic responses. Here is an example of how you might extend your bot to handle incoming messages:

from flask import Flask, request, jsonify

from twilio.twiml.messaging_response import MessagingResponse

app = Flask(__name__)

@app.route("/whatsapp", methods=["POST"])

def whatsapp():

incoming_msg = request.values.get('Body', '').lower()

resp = MessagingResponse()

if "hello" in incoming_msg:

resp.message("Hi there! How can I help you?")

else:

resp.message("Sorry, I didn't understand that.")

return str(resp)

if __name__ == "__main__":

app.run(debug=True)

Deploying Your Bot

Once you have developed and tested your bot locally, you can deploy it to a cloud service like Heroku or AWS. Make sure to set up the appropriate webhooks in your Twilio console to direct incoming messages to your deployed application.

By following these steps, you should be able to create a fully functional WhatsApp bot using Python. This guide provides a solid foundation that you can build upon to add more advanced features and integrate with other services as needed.