Metadata-Version: 1.0
Name: pywhatsapp
Version: 0.0.4
Summary: Simple wrapper around yowsup to send a message or mediafile with whatsapp
Home-page: https://github.com/tax/pywhatsapp
Author: Paul Tax
Author-email: paultax@gmail.com
License: BSD licence, see LICENCE.txt
Description: # Example usage
        You can register a whatsapp client with the yowsup-cli ([see registration](https://github.com/tgalal/yowsup/wiki/yowsup-cli-2.0))
        
        ```python
        from whatsapp import Client
        
        to = '31641371199'
        
        client = Client(login='3161516888', password='secretpasswordbase64')
        client.send_message(to, 'Hello lola')
        client.send_media(to, path='/Users/tax/Desktop/logo.jpg')
        ```
        
        # Installation
        ```
        $ pip install pywhatsapp
        ```
Platform: UNKNOWN
