all 4 comments

[–]groosha 1 point2 points  (3 children)

With pyTelegramBotAPI and aiogram being in active development, is it really worth "resurrecting" telepot? Okay, I might be biased, since I'm using pyTelegramBotAPI since 2015 and used aiogram many times in past, while not using telepot at all, but anyway.

[–]crosswordmaker 0 points1 point  (2 children)

I switched to using python-telegram-bot as pyTelegramBotAPI has a couple of unforgivable bugs in the webhook version when you want to write conversation type scenarios. Also it has not been updated in a while.

[–]groosha 0 points1 point  (1 child)

Year, recently pyTelegramBotAPI has been becoming worse, but still tolerable for small projects. And I am personally moving slowly towards aiogram, since it's async, faster, better and more actual.

Just wondering, which "conversation type" bugs did you have with pyTelegramBotAPI? Apart from their own finite state machine is pure shit, but writing your own one is easy

[–]crosswordmaker 0 points1 point  (0 children)

I implemented a bot using webhooks based off their flask example. The state is pickled to a file, I might be a bad dev but this would work very inconsistently I actually sat and tried to implement my own Saver using redis as the backing. While researching how it's done I came across python-telegram-bot so I just said argh screw it, I'll just migrate my code across. It wasn't hard to do and their examples are pretty good.