Fixes
- Fixed docs
- Fixed workflows
Enhancements
- Updated docs
- Updated setup
Features
- Added FAQ
- Added logger
- Added debug mode
In debug mode you can see data received from `whatsapp-api-client-python`
python
bot = GreenAPIBot("", "", debug_mode=True)
- Added `raise_errors` option
If the option is enabled, it will be raised when an error is received. Enabled by default
python
bot = GreenAPIBot("", "", raise_errors=True)
- Added bot debug mode
In the bot debug mode you can see all actions with the received data and their handling
python
bot = GreenAPIBot("", "", bot_debug_mode=True)
- Added Python **3.12** support
Dependencies
- Bump whatsapp-api-client-python from 0.0.41 to 0.0.44