DEV Community

TeamKillerX
TeamKillerX

Posted on

TgCore: Not a Library. A Telegram Infrastructure SDK.

Open source: TgCore

❌ Regular library:

send_message(chat_id, text, parse_mode, disable_web_page_preview, ...)
Enter fullscreen mode Exit fullscreen mode

TgCore ✅

tg.calls.sendMessage()
  .chatId(id)
  .text(text)
  .execute()
Enter fullscreen mode Exit fullscreen mode

TgCore is not about writing bots.
It’s about building infrastructure.

TGCore is not just a library. It’s an SDK architecture.

Top comments (0)