Metadata-Version: 1.1
Name: whapy
Version: 0.1.3
Summary: A python API for whatsapp web
Home-page: https://github.com/efraimrodrigues/WhaPy
Author: Efraim Rodrigues
Author-email: efraimnaassom@gmail.com
License: MIT
Description: [![Documentation Status](https://readthedocs.org/projects/whapy/badge/?version=latest)](http://whapy.readthedocs.io/en/latest/?badge=latest)
        
        Checkout the [documentation][doc].
        
        [doc]: http://whapy.readthedocs.io/
            
        ## Quick Example
        ```py
        import whapy
        
        wap = whapy.WhaPy(whapy.Browser.firefox)
        
        @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("Let's go!")
        
        wap.run()
        ```
        
        ## Dependencies
        
        - Python 3.4.2+
        - `selenium` library
        - `a webdriver` (http://selenium-python.readthedocs.io/installation.html#drivers)
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
