3 074
订阅者
-1224 小时
-287 天
-14130 天
帖子存档
3 078
+1
Comment ስር Code ይለቀቅ የሚል ስለተደጋገመ ነው።
የ ChatGPT bot code(@EskoChatGPT4Bot) እንድለቅ share በማድረግ 2.6K Subscribers አስገቡኝ እና Codun እለቃለሁ🤗
እና በምለቀው ፖስት React በማድረግ አበረታቱኝ
3 078
Esko Character Counter Bot
በማንኛው ቋንቋ የተፆፈ ፅሑፍ ስንት Character እና ቃላት እንዳሉት ለማወቅ @EskoCharacterCounterBot ይጠቀሙ።
3 078
ChatGPT Bot እንደገና መስራት ጀምሯል።
አዲስ የተጨመሩ ነገሮች
- Chat History በማስታወስ ቀድማችሁ ከፃፋችሁት ተነስቶ መልስ የመስጠት አቅም አለው።
- ፈጣን እና ግልፅ ምላሽ ይሰጣል
Bot @EskoChatGPT4Bot
3 078
🔈 How To Make A Telegram Bot 🦢
➡️ Part 3 - How to send a Message
➡️ Video Link ➡️ Click Here
➡️Video Length : 3.5 Min
🎥 Code In The Video
bot.replyText(message.chat.id, "Hello! Welcome To Esko Coding")3 078
🔈 How To Make A Telegram Bot 🦢
➡️ Part 3 - How to send a Message
➡️ Video Link ➡️ Click Here
➡️Video Length : 4 Min
🎥 Code In The Video
bot.replyText(message.chat.id, "Hello! Welcome To Esko Coding")3 078
🔈 How To Make A Telegram Bot 🦢
➡️ Part 2 - How to host our Telegram Bot
➡️ Video Link ➡️ Click Here
➡️Video Length : 4 Min
3 078
🔈 How To Make A Telegram Bot 🦢
➡️ Part 1 - Where to host our Telegram Bot
➡️ Video Link ➡️ Click Here
➡️Video Length : 3 Min
3 078
✅ How To Make A Share Contact Button
keyboard = ReplyKeyboardMarkup(True)
keyboard.add(KeyboardButton("Share Contact", request_contact=True))
bot.replyText(chat_id=u, text="Please Share Contact:", reply_markup=keyboard)3 078
✅ How To Make Button
button_text1 = " 🔳 Big Button 1"
button_text2 = "🔳 Big Button 2"
button_text3 = "🔳 Big Button 3"
button_text4 = "🔳 Big Button 1"
Button = ReplyKeyboardMarkup()
Button.add(button_text1,button_text2)
Button.add(button_text3,button_text4)
bot.sendMessage(text="Welcome To Esko Coding. This is a sample Big Button", parse_mode="html", reply_markup=Button)3 078
✅ How To Make Inline Button
keyboard = ReplyKeyboardMarkup(True)
keyboard.row("Button1","Button2")
keyboard.row("Button3", "Button4")
# Max 12 row can be set
bot.replyText(
chat_id = message.chat.id,
text = "Welcome to Esko Coding. This is a sample Button.",
reply_markup = keyboard
)3 078
✅ How To Make Inline Button
markup = InlineKeyboardMarkup() markup.add(InlineKeyboardButton( text='YouTube Channel', url ='https://youtube.com/@eskedarejiguofficial?si=8qx3hgY3-gd41yh1) )
bot.replyText( chat_id = message.chat.id, text = "Hello! Welcome To Esko Coding. This is a sample Inline Button", reply_markup = markup )3 078
✅ How to send Message
bot.replyText(message.chat.id, "Hello! Welcome To Esko Coding")3 078
Channel Auto Reaction Code
command:
/handler_channel_post
code:
msgg = str(message)
if 'media_group_id' in str(msgg):
raise ReturnCommand
message_id = message.message_id
chat_id = str(message.chat.id)
a = ["❤️",]
b = libs.Random.randomStr(1, a)
bot.setMessageReaction(chat_id=chat_id, message_id=message_id, reaction=ReactionType(type="emoji", emoji= b), is_big=True)
Demo Bot : @Eskorxn1bot3 078
ዝግጅታችንን ጨርሰናል።
በቀጣይ ሳምንት Part - 1 Video ይለቀቃል።
Title :- Meet Telebot Creator : The Beginner's Guide
3 078
በቀን ከ 1000 ብር በላይ የምትሰሩበት ቦት!
Blue Bingo ይባላል ከስር ባለው Link ገብታችሁ Register ስታደርጉ የ 10 ብር ቦነስ ይሰጣችኋል።
በተጨማሪ አዲስ ሰው ስትጋብዙ ፤ የጋበዛችሁት ሰው ከሚያገኘው 10% ታገኛላችሁ።
https://t.me/bluebingobot?start=1254745064
3 078
Repost from 𝘒𝘦𝘷𝘪𝘯 x 𝘉𝘰𝘵𝘴™
🌩 Boost Channel Task Code
💡 Command :-
⚡ Boost (optional)
username = 'kevinbots' # enter your channel username without @
button = InlineKeyboardMarkup()
button.add(InlineKeyboardButton(text='⚡ Boost',url=f'https://t.me/boost/{username}'))
if message.chat.type != 'private':
raise ReturnCommand
User.saveData('boost', False)
bot.sendMessage(chat_id=u,text='⚡ <b>Boost this channel to help it unlock additional features.\n\n💰 Reward:</b> <i>$0.5</i>',parse_mode='html',reply_markup=button)
💡 Command :- /handler_chat_boost (required)
channel = 'kevinbots' # enter your channel username without @
if message and message['chat']['username'].lower() == channel.lower():
userid = message['boost']['source']['user']['id']
balance = libs.Resources.anotherRes('balance',user=userid)
boost = User.getData('boost',user=userid)
if boost == None:
raise ReturnCommand
if boost == False:
if User.getData('boosted',user=userid) != True:
User.saveData('boosted',data=True,user=userid)
User.saveData('boost',data=True,user=userid)
balance.add(0.5)
bot.sendMessage(chat_id=userid,text='💰 <b>Congratulations, $0.5 Added To Your Balance.</b>',parse_mode='html')
else:
bot.sendMessage(chat_id=userid,text='👍 <b>You have already helped boost our channel.</b>',parse_mode='html')
🗣️ Code by: @Coder_Kevin
🔖 Posted by: @KevinBots3 078
Repost from 𝘒𝘦𝘷𝘪𝘯 x 𝘉𝘰𝘵𝘴™
🌩 Boost Channel Task Code
💡 Command :-
⚡ Boost (optional)
username = 'kevinbots' # enter your channel username without @
button = InlineKeyboardMarkup()
button.add(InlineKeyboardButton(text='⚡ Boost',url=f'https://t.me/boost/{username}'))
if message.chat.type != 'private':
raise ReturnCommand
User.saveData('boost', False)
bot.sendMessage(chat_id=u,text='⚡ <b>Boost this channel to help it unlock additional features.\n\n💰 Reward:</b> <i>$0.5</i>',parse_mode='html',reply_markup=button)
💡 Command :- /handler_chat_boost (required)
channel = 'kevinbots' # enter your channel username without @
if message and message['chat']['username'].lower() == channel.lower():
userid = message['boost']['source']['user']['id']
balance = libs.Resources.anotherRes('balance',user=userid)
boost = User.getData('boost',user=userid)
if boost == None:
raise ReturnCommand
if boost == False:
if User.getData('boosted',user=userid) != True:
User.saveData('boosted',data=True,user=userid)
User.saveData('boost',data=True,user=userid)
balance.add(0.5)
bot.sendMessage(chat_id=userid,text='💰 <b>Congratulations, $0.5 Added To Your Balance.</b>',parse_mode='html')
else:
bot.sendMessage(chat_id=userid,text='👍 <b>You have already helped boost our channel.</b>',parse_mode='html')
🗣️ Code by: @Coder_Kevin
🔖 Posted by: @KevinBots3 078
Code For Sell!
እነዚህን ሁለቱን ኮዶች በ 1500 ብር ብቻ መግዛት የሚፈልግ @EskoDrums ያናግረኝ። ቅናሹ የሚቆየው ለዛሬ ብቻ ነው። በ Telebot Creator ነው ቦቶች የተሰሩት።
@EnawaPayBot
@ClickEthiopiaBot
Dm @EskoDrums
