Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koladev32/flask-whatsapp-cloud-api
https://github.com/koladev32/flask-whatsapp-cloud-api
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/koladev32/flask-whatsapp-cloud-api
- Owner: koladev32
- Created: 2022-05-21T16:48:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-31T10:24:29.000Z (over 2 years ago)
- Last Synced: 2023-03-06T01:48:37.354Z (almost 2 years ago)
- Language: Python
- Size: 16.6 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A simpkle implementation of the WhatsApp Cloud API with Flask
For this project, two functionaities were implemented:
- Sending messages.
- Receiving notifications via webhooks.## Installation
Make sure to have an `.env` file with the following variables:
```shell
WHATSAPP_API_TOKEN=
WHATSAPP_NUMBER_ID=
WHATSAPP_NUMBER_WEBHOOK_TEST=
```And install the dependencies:
```shell
pip install install -r requirements.txt
```And then run the server:
```shell
flask run
```