A modern, easy to use, feature-rich ready API wrapper for WhatsApp Business Cloud written in Python
Project description
wa_me
A modern, easy to use, feature-rich ready API wrapper for WhatsApp Business Cloud written in Python.
Documentation: https://leandcesar.github.io/wa_me/
Free and open source software: MIT license
Features
Full Send Messages Support (text, audio, contacts, documents, images, interactive, location, sticker, and videos)
Full Webhook Notification Parsing Support
Installing
Stable release
To install wa_me, run this command in your terminal:
$ pip install wa_me
This is the preferred method to install wa_me, as it will always install the most recent stable release.
If you don’t have pip installed, this Python installation guide can guide you through the process.
From sources
The sources for wa_me can be downloaded from the Github repo.
You can either clone the public repository:
$ git clone git://github.com/leandcesar/wa_me
Or download the tarball:
$ curl -OJL https://github.com/leandcesar/wa_me/tarball/master
Once you have a copy of the source, you can install it with:
$ python setup.py install
Quick Example
Mirror Bot
from wa_me import Bot, Ctx
class MirrorBot(Bot):
def before_event_message(self, ctx: Ctx):
ctx.read()
def on_event_message_audio(self, ctx: Ctx):
ctx.send_audio(ctx.message.audio.id)
def on_event_message_document(self, ctx: Ctx):
ctx.send_document(
ctx.message.document.id,
caption=ctx.message.document.caption,
)
def on_event_message_image(self, ctx: Ctx):
ctx.send_image(
ctx.message.image.id,
caption=ctx.message.image.caption,
)
def on_event_message_location(self, ctx: Ctx):
ctx.send_location(
latitude=ctx.message.location.latitude,
longitude=ctx.message.location.longitude,
address=ctx.message.location.address,
name=ctx.message.location.name,
)
def on_event_message_sticker(self, ctx: Ctx):
ctx.send_sticker(ctx.message.sticker.id)
def on_event_message_text(self, ctx: Ctx):
ctx.send_text(ctx.message.text.body)
def on_event_message_video(self, ctx: Ctx):
ctx.send_video(
ctx.message.video.id,
caption=ctx.message.video.caption,
)
Run using Flask
from flask import Flask, request
from wa_me import Bot
app = Flask(__name__)
bot = Bot()
bot.start(phone_id="PHONE_ID", token="ACCESS_TOKEN")
@app.get("/")
async def ping():
if request.args.get("hub.verify_token") == "VERIFY_TOKEN":
return request.args.get("hub.challenge")
return "Invalid verify token"
@app.post("/")
def root():
data = request.get_json()
bot.handle(data)
return "Success"
Run using Fast API
from fastapi import FastAPI, Request
from wa_me import Bot
app = FastAPI()
bot = Bot()
bot.start(phone_id="PHONE_ID", token="ACCESS_TOKEN")
@app.get("/")
async def ping(
token: str = Query(alias="hub.verify_token"),
challenge: str = Query(alias="hub.challenge"),
):
if token == VERIFY_TOKEN:
return challenge
return "Invalid verify token"
@app.post("/")
async def root(request: Request):
data = await request.json()
bot.handle(data)
return "Success"
Useful Links
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2022-12-25)
First release on PyPI.
Implement data classes and converters with dacite.
Implement HTTP and Client.
Implement Bot and Ctx.
Implement TTLDict.
Implement Routine.
Add docs.
Add examples.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wa_me-0.1.0.tar.gz
.
File metadata
- Download URL: wa_me-0.1.0.tar.gz
- Upload date:
- Size: 71.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.9.2 requests/2.28.1 setuptools/44.0.0 requests-toolbelt/0.10.1 tqdm/4.64.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | deaa5a82076d9873849c73e5db94303ebc6c9288b468a308bde8f9b2e9ec0358 |
|
MD5 | e5a71fe35a1fb3d0861f69b243b2d6b2 |
|
BLAKE2b-256 | e0c381709ce6e68f93fec4f90d5c0d1988658a2e3b0880e859753a965a4a7ee8 |
File details
Details for the file wa_me-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: wa_me-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.9.2 requests/2.28.1 setuptools/44.0.0 requests-toolbelt/0.10.1 tqdm/4.64.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fc1d653153f9a14bb505439737c2030f799a6f9797d068cd62d8c4820703a97 |
|
MD5 | e209a23ee4def908a2611c916c2df872 |
|
BLAKE2b-256 | c1b24e5adb2bf1e18621968b53e5eb2e03f9cb6e0fe42c0d189e99d5ded341ab |