Skip to main content

A whatsapp client library for python using the new WhatsApp cloud API

Project description

python-whatsapp-bot

A whatsapp client library for python utilizing the WhatsApp Business Cloud API.

Made in Nigeria Downloads Downloads Downloads

Features supported

Getting started

To start, install with pip:

pip3 install --upgrade python-whatsapp-bot

Setting up

To get started using this library, you have to obtain a TOKEN and PHONE NUMBER ID from Facebook Developer Portal. You get these after setting up a developer account and setting up an app.

Here is a tutorial on the platform on how to go about the process

If you followed the tutorial, you should now have a TOKEN and TEST WHATSAPP NUMBER and its phone_number_id.activeYou might have even already sent your first message on the platform using the provided curl request.

Now you have all you need to start using this library. Note: The given token is temporary. This tutorial on the platform guides you to create a permanent token. This guide shows how to register an authentic phone number.

Initialization

To initialize the app instance, you need to specify the TOKEN and phone_number_id you obtained from the steps above. Note that phone number id is not phone number.

>>> from python_whatsapp_bot import Whatsapp
>>> wa_bot = Whatsapp(number_id='305xxxxxx', token=TOKEN)

Once initialized, you can start using some of the bot's features right away.

Sending Messages

To send a text message

>>> wa_bot.send_message('mobile eg: 2348145xxxxx3', 'Your message here')

Example

Here is an example

>>> wa_bot.send_message('2348945434343', 'Your message here')

Sending Interactive Messages

For buttons and lists, use the same send_message endpoint but with a reply_markup parameter. e.g

For buttons

>>> from from python_whatsapp_bot import Inline_keyboard # Import inline_keyboard for interactive buttons
>>> wa_bot.send_message('2348945434343', 'This is a message with two buttons',reply_markup=Inline_keyboard(['First button', 'Second button']))

For lists

>>> from python_whatsapp_bot import Inline_list, List_item # Import inline_list and List_item for interactive list
>>> wa_bot.send_message('2348945434343', 'This is a message with lists',reply_markup=Inline_list("Show list",list_items=[[List_item("one list item")]])

Sending Template Messages

To send a pre-approved template message:

>>> wa_bot.send_template_message("255757xxxxxx","hello_world")

Handling Incoming Messages

A short note about Webhooks

For every message sent to your bot business account, whatsapp sends an object containing the message as a post request to a url which you have to provide beforehand. The url you provide should be able to process simple get and post requests. This url is the webhook url, and the object whatsapp sends to your url is the webhook.

Now, you can write a small server with the Python Flask library to handle the webhook requests, but another problem arises if you're developing on a local server; whatsapp will not be able to send requests to your localhost url, so a quick fix would be to deploy your project to an online server each time you make a change to be able to test it. Once deployed, you can proceed to register the url of your deployed app using this tutorial from the platform.

If you're like me however, you wouldn't want to always deploy before you test, you want to run everything on local first. In this case, you might decide to use Ngrok to tunnel a live url to your local server, but another issue arises; Since Ngrok generates a new url each time it is restarted, you'd have to constantly log in to facebook servers to register the newly generated url. I presume you don't want that hassle either. In this situation, a webhook forwarder can be deployed to a virtual server like Heroku, and it doesn't get modified. You register the deployed forwarder's url on Whatsapp servers, it receives all the webhook requests and forwards them to your local machine using ngrok.

To continue with this fowarding process, open this repository https://github.com/Radi-dev/webhook-forwarder and follow the readme instructions to deploy it and setup a client for it on your device, then register the url following this guide.

Issues

Please open an issue to draw my attention to mistake or suggestion

Contributing

This is an opensource project under MIT License so anyone is welcome to contribute from typo, to source code to documentation, JUST FORK IT.

References

  1. WhatsApp Cloud API official documentation

All the credit

  1. All contributors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_whatsapp_bot-2.0.1.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_whatsapp_bot-2.0.1-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file python_whatsapp_bot-2.0.1.tar.gz.

File metadata

  • Download URL: python_whatsapp_bot-2.0.1.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for python_whatsapp_bot-2.0.1.tar.gz
Algorithm Hash digest
SHA256 93d2d0819b12c18df5b94d4ecb587ad8b7237ebaf760c6550440eb8487b51912
MD5 4adf807a3c4cff9a22dd63799a2f6a1f
BLAKE2b-256 70dcb60e9a906a4b34348fe3c2424c046b4c6f81741ebd8398a1770c55b8c21f

See more details on using hashes here.

File details

Details for the file python_whatsapp_bot-2.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for python_whatsapp_bot-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 27b0a8cfd91d2d6a5ff36d04b7a0bb1daa1af4ee71ec0aeb318fc1945b578929
MD5 fab550d6449c2904d5fa7acfc5cf095a
BLAKE2b-256 063704afc9a709bde20c91901361ab432383ab0f158cd19d39723987c5fdf992

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page