microw icon indicating copy to clipboard operation
microw copied to clipboard

A telegram bot designed to track expenses.

Results 2 microw issues
Sort by recently updated
recently updated
newest added

I would like to separate conversation_handlers like: ```python application.add_handler(MessageHandler(~filters.User(user_id=int(TELEGRAM_USER_ID)), restrict_access)) application.add_handler(CommandHandler("start", start)) application.add_handler(conv_handler_add) application.add_handler(conv_handler_delete) application.add_handler(conv_handler_charts) application.add_handler(conv_handler_budgets) application.run_polling(allowed_updates=Update.ALL_TYPES) ``` - First Handler as a Filter - Common Start handler (also for...

Hello! I encountered some minor issues during the installation process. Here are my suggestions for improvement. I also optimized the Dockerfile to install dependencies first and then copy the src...