/WhaPy

WhaPy is an API for whatsapp written in Python. THIS API HAS BEEN DISCONTINUED DUE WHATSAPP INTERFACE UPDATE

Primary LanguagePythonMIT LicenseMIT

Documentation Status

Checkout the documentation.

Installing

To install the library just run the following command:

python3 -m pip install whapy

Quick Example

import whapy

wap = whapy.WhaPy(whapy.Browser.firefox, True)

@wap.event
async def on_message(chat, messages):
    print("New messages arrived: ")
    for i in range(0,len(messages)):
        if not messages[i].is_media():
            print(messages[i].get_content())
            if messages[i].get_content() == "@who":
                chat.send_message("are you?")

@wap.event
async def on_ready():
    print("Logged in as " + wap.get_me())

wap.run()

Dependencies