This repository contains several examples of simple bots which are using TelegramBotAPI
Go to file
InsanusMokrassar a85fdc227e
Update gradle.properties
2023-06-08 22:47:48 +06:00
.github/workflows Update build.yml 2023-04-04 09:57:28 +06:00
ChatAvatarSetter update up to 3.3.1 2022-10-30 19:57:11 +06:00
DeepLinksBot add DeepLinkBot 2022-08-26 12:21:24 +06:00
FSMBot fix according to update of tgbotapi version 2023-02-17 16:04:32 +06:00
FilesLoaderBot complete sample with sticker set handler example 2023-03-11 21:39:08 +06:00
ForwardInfoSenderBot check and a little update 2023-02-27 22:38:05 +06:00
GetMeBot finish checking update 2023-04-22 00:17:39 +06:00
HelloBot upgrade of hello bot 2023-05-19 22:45:46 +06:00
InlineQueriesBot Update Bot.kt 2023-04-22 16:39:59 +06:00
KeyboardsBot in keyboards bot add sample with sending of inline query 2023-04-22 00:11:56 +06:00
LiveLocationsBot add LiveLocationsBot sample and update dependencies 2023-02-17 15:58:25 +06:00
RandomFileSenderBot complete sample with native 2023-04-19 20:20:11 +06:00
ResenderBot complete sample with native 2023-04-19 20:20:11 +06:00
RightsChangerBot check and a little update 2023-02-27 22:38:05 +06:00
SlotMachineDetectorBot migration onto 2.1.1 2022-06-26 13:03:52 +06:00
StickerInfoBot improve sticker info bot 2023-03-11 01:00:31 +06:00
StickerSetHandler complete sample with sticker set handler example 2023-03-11 21:39:08 +06:00
TopicsHandling add topics example 2022-12-31 15:45:48 +06:00
UserChatShared improvements and fixes 2023-02-06 14:07:44 +06:00
WebApp update dependencies 2023-05-06 13:13:38 +06:00
gradle/wrapper update dependencies 2023-02-27 20:36:03 +06:00
.gitignore update up to 0.38.0 2022-01-02 01:06:04 +06:00
LICENSE Initial commit 2020-02-25 12:51:49 +06:00
README.md update dependencies and other attributes 2023-04-04 01:02:18 +06:00
build.gradle temporal update of version 2022-11-18 23:10:24 +06:00
gradle.properties Update gradle.properties 2023-06-08 22:47:48 +06:00
gradlew complete forwarder bot exmple 2020-02-25 13:27:37 +06:00
gradlew.bat complete forwarder bot exmple 2020-02-25 13:27:37 +06:00
renovate.json Add renovate.json 2020-08-12 20:20:42 +00:00
settings.gradle add inline queries sample 2023-04-21 23:21:15 +06:00

README.md

TelegramBotAPI-examples

This repository contains several examples of simple bots which are using TelegramBotAPI

How to use this repository

TO RUN NATIVE TARGETS ON LINUX YOU SHOULD INSTALL CURL LIBRARY. FOR EXAMPLE: sudo apt install libcurl4-gnutls-dev

This repository contains several important things:

  • Example subprojects
  • Commits
  • Structure

Example subproject

Each example subproject contains information about how to run this example and what is it doing. Usually, it is some simple thing like sending "hello" message to the user which wrote to the bot.

Commits

Commits can contains some things like migration onto new version (especially it is actual for major version changes), updates according to the new features in versions and different other things which usually more important in context of history or changes between library version

Structure

Structure of this repository fully representative (it is the reason why this repo contains multiplatform subprojects) and you can use it as some template (but I am strongly recommend you to use my TelegramBot template or Multiplatform Project template)