Open Jibek100 opened 9 months ago
Требуется Добавить обработку ошибок в библиотеку whatsapp-chatbot-python
Уровень Библиотеки
Обходное решение Обернуть команду bot.run_forever() в try-except блок, например:
try: bot.run_forever() except requests.exceptions.HTTPError as e: print(f"An unexpected error occurred: {e}")
Required To add exception handling in the whatsapp-chatbot-python library
Level Libraries
Workaround To add try-except statement to bot.run_forever() statement, for example:
Требуется Добавить обработку ошибок в библиотеку whatsapp-chatbot-python
Уровень Библиотеки
Обходное решение Обернуть команду bot.run_forever() в try-except блок, например:
Required To add exception handling in the whatsapp-chatbot-python library
Level Libraries
Workaround To add try-except statement to bot.run_forever() statement, for example: