2018-12-26 08:07:24 +00:00
|
|
|
# TelegramBotAPI
|
|
|
|
|
2020-02-17 09:33:28 +00:00
|
|
|
[![Chat in Telegram](badges/chat.svg)](https://t.me/InMoTelegramBotAPI)
|
|
|
|
|
|
|
|
## TelegramBotAPI status
|
|
|
|
|
2020-02-04 07:42:06 +00:00
|
|
|
[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
|
2018-12-28 05:26:15 +00:00
|
|
|
[![Download](https://api.bintray.com/packages/insanusmokrassar/StandardRepository/TelegramBotAPI/images/download.svg) ](https://bintray.com/insanusmokrassar/StandardRepository/TelegramBotAPI/_latestVersion)
|
2020-02-04 07:46:07 +00:00
|
|
|
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.insanusmokrassar/TelegramBotAPI/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.insanusmokrassar/TelegramBotAPI)
|
2019-12-13 18:13:10 +00:00
|
|
|
[![Build Status](https://jenkins.insanusmokrassar.com/buildStatus/icon?job=TelegramBotAPI_master__publishing)](https://jenkins.insanusmokrassar.com/job/TelegramBotAPI_master__publishing/)
|
2018-12-28 05:26:15 +00:00
|
|
|
|
2020-02-17 09:33:28 +00:00
|
|
|
## TelegramBotAPI extensions status
|
|
|
|
|
|
|
|
[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
|
|
|
|
[![Download](https://api.bintray.com/packages/insanusmokrassar/StandardRepository/TelegramBotAPI-extensions-api/images/download.svg) ](https://bintray.com/insanusmokrassar/StandardRepository/TelegramBotAPI-extensions-api/_latestVersion)
|
|
|
|
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.insanusmokrassar/TelegramBotAPI-extensions-api/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.insanusmokrassar/TelegramBotAPI-extensions-api)
|
|
|
|
[![Build Status](https://jenkins.insanusmokrassar.com/buildStatus/icon?job=TelegramBotAPI-extensions-api_master__publishing)](https://jenkins.insanusmokrassar.com/job/TelegramBotAPI-extensions-api_master__publishing/)
|
2020-02-14 13:18:15 +00:00
|
|
|
|
2018-12-26 08:07:24 +00:00
|
|
|
## What is it?
|
|
|
|
|
2020-02-17 09:25:08 +00: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 08:07:24 +00:00
|
|
|
|
2020-02-17 09:25:08 +00: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 08:07:24 +00:00
|
|
|
|
2020-02-17 09:25:08 +00: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 01:04:48 +00:00
|
|
|
|
2020-02-17 09:25:08 +00:00
|
|
|
## Ok, where should I start?
|
2019-05-05 01:04:48 +00:00
|
|
|
|
2020-02-17 09:25:08 +00: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 01:04:48 +00:00
|
|
|
|
2020-02-17 09:33:28 +00:00
|
|
|
Anyway, all libraries are very typical inside of them. For example, any request in TelegramBotAPI look like
|
2020-02-17 09:25:08 +00:00
|
|
|
`requestsExecutor.execute(SomeRequest())`.
|