-
Updated
May 2, 2022 - Python
telegram-bot-api
Here are 1,415 public repositories matching this topic...
-
Updated
Mar 31, 2022 - PHP
-
Updated
May 1, 2022 - C#
-
Updated
May 22, 2021 - Go
-
Updated
Mar 31, 2022 - JavaScript
As described in CODE_STYLE.md:
Always mark a function as #[must_use] if its return value must be used.
However, we haven't used this attribute much. As of writing this, there are 15 in teloxide and 5 in teloxide-core. Obviously, there are a lot more pure functions that can be ma
-
Updated
Apr 29, 2022 - Java
-
Updated
Dec 1, 2021 - Python
-
Updated
Apr 26, 2022 - Python
We are missing a couple of parameters in the sendDocument API operation, thumb and caption_entities
-
Updated
Apr 28, 2022 - C#
-
Updated
May 2, 2019 - HTML
-
Updated
Apr 29, 2022 - Scala
-
Updated
Apr 27, 2022 - Python
I believe videos need to be chunked to send, could this be built in to the package?
-
Updated
Jan 2, 2022 - Swift
-
Updated
Apr 11, 2022 - Python
-
Updated
Sep 6, 2021 - Swift
-
Updated
Apr 5, 2022 - Java
-
Updated
May 1, 2022 - TypeScript
Make API more Dart-y
I like the distinction of telegram and teledart – one is a simple typed wrapper around web requests, the other one a full-fledged powerful API that uses the capabilities of object-oriented programming. Some aspects like the inline mode are really great, but I think other parts could be a bit better.
For example, most requests still need to be made through the teledart instance with the exce
-
Updated
Oct 19, 2021 - Haskell
-
Updated
Feb 26, 2022 - Python
-
Updated
Aug 4, 2021 - Python
-
Updated
Apr 17, 2022 - Go
-
Updated
Apr 26, 2022 - PHP
-
Updated
Dec 25, 2021 - Java
Improve this page
Add a description, image, and links to the telegram-bot-api topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the telegram-bot-api topic, visit your repo's landing page and select "manage topics."
As i understand, now InlineKeyboardMarkup is just a dict with lists, so method like pop() will be useful and make code cleaner, at least for newbies like me.
For now, to make dynamic inline keyboard with deleting buttons after user clicks on them i need to recreate entire markup from changed list, but it can be simplified by using InlineKeyboardMarkup.pop() or something like that.