telebot.nim
2024.12.17
يتم تنفيذ Async Telegram Bot API Client فيNim-Lang
من الإصدار 1.0.0، اختفى إعجاب procs newMessage
و newPhoto
و..، واستخدم sendMessage
و sendDocument
بدلاً من ذلك. إذا كنت لا تزال تفضل الطريقة القديمة/القبيحة لإرسال العناصر، فما عليك سوى استيراد telebot/compat
للتوافق مع الإصدارات السابقة
$ nimble install telebot
import telebot, asyncdispatch, logging, options, strutils
var L = newConsoleLogger (fmtStr = " $levelname, [$time] " )
addHandler (L)
# remember to strip your secret key to avoid HTTP error
const API_KEY = strip ( slurp ( " secret.key " ))
proc updateHandler (b: Telebot , u: Update ): Future [ bool ] {. async .} =
if u.message.isNil:
# return true will make bot stop process other callbacks
return true
var response = u.message
if response.text.len > 0 :
let text = response.text
discard await b. sendMessage (response.chat.id, text, parseMode = " markdown " , disableNotification = true , replyParameters = ReplyParameters (messageId: response.messageId))
let bot = newTeleBot ( API_KEY )
bot. onUpdate (updateHandler)
bot. poll (timeout = 300 )
import telebot, asyncdispatch, options, logging, strutils
# remember to strip your secret key to avoid HTTP error
const API_KEY = strip ( slurp ( " secret.key " ))
proc updateHandler (bot: TeleBot , update: Update ): Future [ bool ] {. async .} =
discard await bot. sendPhoto (response.chat.id, " file:///path/to/photo.jpg " )
let bot = newTeleBot ( API_KEY )
bot. onUpdate (updateHandler)
bot. poll (timeout = 300 )
لمزيد من المعلومات، يرجى الرجوع إلى صفحة Telegram Bot API الرسمية