2018-12-26 16:07:24 +08:00
# TelegramBotAPI
2020-03-17 13:25:10 +06:00
| Common info | [](https://github.com/KotlinBy/awesome-kotlin) [](https://t.me/InMoTelegramBotAPI) [](https://travis-ci.com/InsanusMokrassar/TelegramBotAPI) |
| -----------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
2020-03-17 13:30:01 +06:00
| TelegramBotAPI status | [](https://bintray.com/insanusmokrassar/StandardRepository/TelegramBotAPI/_latestVersion) [](https://maven-badges.herokuapp.com/maven-central/com.github.insanusmokrassar/TelegramBotAPI) |
| TelegramBotAPI Extensions status | [](https://bintray.com/insanusmokrassar/StandardRepository/TelegramBotAPI-extensions-api/_latestVersion) [](https://maven-badges.herokuapp.com/maven-central/com.github.insanusmokrassar/TelegramBotAPI-extensions-api) |
2020-02-17 15:33:28 +06:00
2018-12-26 16:07:24 +08:00
2020-02-17 15:25:08 +06:00
It is a complex of libraries for working with `TelegramBotAPI` in type-safe and strict way as much as it possible. In
the list of this complex currently next projects:
2018-12-26 16:07:24 +08:00
2020-02-17 15:25:08 +06:00
* [TelegramBotAPI ](TelegramBotAPI/README.md ) - core of library. In fact it is independent library and can be used alone
without any additional library
* [TelegramBotAPI Extensions ](TelegramBotAPI-extensions-api/README.md ) - contains extensions (mostly for
`RequestsExecutor` ), which allows to use the core library in more pleasant way
2018-12-26 16:07:24 +08:00
2020-02-17 15:25:08 +06:00
Most part of some specific solves or unuseful
moments are describing by official [Telegram Bot API ](https://core.telegram.org/bots/api ).
2019-05-05 09:04:48 +08:00
2020-02-17 15:25:08 +06:00
## Ok, where should I start?
2019-05-05 09:04:48 +08:00
2020-02-17 15:25:08 +06:00
Firstly, look at the [TelegramBotAPI ](TelegramBotAPI/README.md ). Here you can find all information about currently
covered Telegram Bot API and other things. After this you can look at the
[TelegramBotAPI Extensions ](TelegramBotAPI-extensions-api/README.md ).
2019-05-05 09:04:48 +08:00
2020-02-17 15:33:28 +06:00
Anyway, all libraries are very typical inside of them. For example, any request in TelegramBotAPI look like
2020-02-17 15:25:08 +06:00
`requestsExecutor.execute(SomeRequest())` .