Harshil
Harshil
> provide a link to the corresponding issue https://github.com/mjpieters/aiolimiter/issues/73 a big discussion, haven't yet seen what parts could apply to us too. > can coroutines be re-build found the inspect...
> ah, nice 👍 it doesn't give you access to `x` though, right? nope
I would agree with poolitzer and vote for option 2. Better to have clean and proper support for something than to have a half baked approach (for `InputMedia*`). > But...
I really like it too, and we already provide some convenience parameters like [`location`](https://github.com/python-telegram-bot/python-telegram-bot/blob/master/telegram/_bot.py#L1953) so why not also add this. But we will also need to have `caption_entities` which can...
@obviyus would you still like to do this?
In order for PTB to differentiate which handler should handle the CallbackQuery, you can specify the [`pattern`](https://docs.python-telegram-bot.org/en/latest/telegram.ext.callbackqueryhandler.html#telegram.ext.CallbackQueryHandler.params.pattern) as an argument. Otherwise only the first CallbackQueryHandler will handle the update, which...
in that case you should add a payload to your `callback_data` like: `circuitId + '_circuit'`, so you can differentiate it in your handler like: `CallbackQueryHandler(def_circuit.circuit_action, pattern=r"^(0|[1-9][0-9]?|100)_circuit"))`.
About the sphinx issue linked.. I found an alternative - We could use rst [Substitutions](https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#substitutions) in such places too. Maybe not as effective as an include, but it would reduce...
what about `TGObject._get_attrs(recursive=False/True)`, which does what you said. Maybe we could make it public?
Have a look at [Handling Network Errors](https://github.com/python-telegram-bot/python-telegram-bot/wiki/Handling-network-errors) & [errorhandlerbot.py](https://docs.python-telegram-bot.org/en/v20.0a2/examples.html#examples-errorhandlerbot) Also upgrading to a2 is recommended (`pip install python-telegram-bot --pre -U`). See the release notes at [@pythontelegrambotchannel](https://t.me/pythontelegrambotchannel)