WhatsApp MultiDevice client
Literally everything combined from:
- https://github.com/adiwajshing/baileys/tree/multi-device
- https://github.com/tgalal/yowsup
- https://github.com/sigalor/whatsapp-web-reveng
- https://github.com/tulir/whatsmeow
Installation:
git clone [email protected]:harianjalundu77/wamd.git
cd wamd
pip3 install -r requirements.txt
python3 setup.py install --record install.txt
Or using venv:
python3 -m venv venv
source venv/bin/activate
git clone [email protected]:harianjalundu77/wamd.git
cd wamd
pip install -r requirements.txt
python setup.py install --record install.txt
if this error occured during installation:
Traceback (most recent call last): File "" , line 1, in <module> File "/tmp/pip-build-a86ixoex/cryptography/setup.py", line 14, in <module> from setuptools_rust import RustExtension ModuleNotFoundError: No module named 'setuptools_rust'
Update the pip:
pip install --upgrade pip
and re-run the installation
Uninstall:
xargs rm -rf < install.txt
Example:
import sys
import pyqrcode
import png # Guard for pyqrcode
from io import BytesIO
from twisted.internet import reactor
from twisted.internet.defer import inlineCallbacks
from wamd.protocol import connectToWhatsAppServer, MultiDeviceWhatsAppClientProtocol
from twisted.logger import (
textFileLogObserver,
FilteringLogObserver,
LogLevelFilterPredicate,
LogLevel,
globalLogPublisher
)
globalLogPublisher.addObserver(
FilteringLogObserver(
observer=textFileLogObserver(sys.stdout, timeFormat="%Y-%M-%d %H:%M:%S"),
predicates=[LogLevelFilterPredicate(defaultLogLevel=LogLevel.levelWithName("debug"))] # or info
)
)
def protocolFactory():
# Do any initialization here, such as reading session file
# to be supplied to the protocol/connection.
return MultiDeviceWhatsAppClientProtocol()
def handleQr(qrInfo):
# this will require pyqrcode installed
# or whatever library or package used to
# render qr code
print("\nQR Info: %r" % (qrInfo))
qrObj = pyqrcode.create(b",".join(qrInfo), error="L")
qrIO = BytesIO()
qrObj.png(qrIO, scale=6)
qrBytes = qrIO.getvalue()
qrIO.close()
with open("qr.png", "wb") as qrFileIO:
qrFileIO.write(qrBytes)
def inboxReceiver(connection, message):
print("Inbox Message: %s" % (message, ))
if not message['fromMe'] and not message['isRead']:
connection.sendReadReceipt(message)
@inlineCallbacks
def onConnect(connection):
print("\nConnection 1: %r" % (connection, ))
connection.on("qr", handleQr)
# the new connection after successfull authentication
# will be different than provided the first connection
# since the connection will automatically be restarted
# after authentication.
connection = yield connection.authenticate()
connection.on("inbox", inboxReceiver)
print("\nConnection 2: %r" % (connection, ))
connectToWhatsAppServer(
protocolFactory=protocolFactory
).addCallback(
onConnect
).addErrback(
lambda f: print("\nFailure : %s" % (f, ))
)
reactor.run()