Metadata-Version: 2.1
Name: whatsappy-py
Version: 2.3.1
Summary: Whatsappy is a Python library for creating whatsapp bots.
Home-page: https://github.com/italoseara/whatsappy
Author: Italo Seara
Author-email: italo.sseara@gmail.com
License: MIT
Description: # whatsappy
        
        Whatsappy is a Python library for creating whatsapp bots.
        
        Creator: [Italo Seara](https://github.com/italoseara)
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install whatsappy.
        
        ```bash
        pip install whatsappy-py
        ```
        
        ## Usage
        
        ```python
        from whatsappy import whatsapp
        
        whatsapp.login(visible=False) # Login whatsapp (Headless mode)
        
        whatsapp.select_chat('Mom') # Goes to the selected chat
        whatsapp.send('Hello') # Send a message
        
        whatsapp.close() # Exit
        ```
        
        You can find more examples [HERE](https://github.com/italoseara/whatsappy/tree/main/examples)
        
        ## Supported features
        
        | Feature  | Status |
        | ------------- | ------------- |
        | Send messages  | âœ… |
        | Receive messages  | âœ… |
        | Verify new messages | âœ… | 
        | Send media (images/audio/documents)  | âœ… |
        | Send media (video)  | âœ… |
        | Send stickers | _pending_ |
        | Receive media (images/audio/video/documents)  | âœ… |
        | Send contact cards | _pending_ |
        | Send location | _pending_ |
        | Receive contact cards | âœ… | 
        | Receive location | âœ… |
        | Message replies | âœ… |
        | Join groups by invite  | _pending_ |
        | Get invite for group  | âœ… |
        | Modify group info (subject, description)  | âœ… |
        | Modify group settings (send messages, edit info)  | âœ… |
        | Add group participants  | âœ… |
        | Kick group participants  | âœ… |
        | Promote group participants | âœ… |
        | Demote group participants | _pending_ |
        | Mention users | âœ… |
        | Mute/unmute chats | _pending_ |
        | Block/unblock contacts | _pending_ |
        | Get contact info | _pending_ |
        | Get profile pictures | _pending_ |
        | Set user status message | _pending_ |
        
        ## Contributing
        
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        
        [MIT](https://github.com/italoseara/whatsappy/blob/main/LICENSE)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Home Automation
Classifier: Topic :: Internet
Description-Content-Type: text/markdown
