๐ Welcome to MK-GTP AI Bot
Your smart all-in-one assistant on Telegram! ๐
Start with this link: https://t.me/MK_DEV_AI_BOT?start=1X7J4T
Your smart all-in-one assistant on Telegram! ๐
Start with this link: https://t.me/MK_DEV_AI_BOT?start=1X7J4T
๐2๐1
๐ข New Features Added in MK-DEV AI Bot! ๐
Weโve added some exciting new commands to make your experience even better:
๐ /shorturl - Shorten a long URL into a compact link
๐ท /qr - Generate a QR code from text or a URL
๐ /ip - Show your public IP and the botโs server IP
๐ฐ /ipinfo - Get detailed geolocation and ISP info of an IP address
๐ฎ /pincode - Lookup postal information by PIN/ZIP code
๐ฐ /gold - Check todayโs Gold & Silver prices (using API)
โก All the previous features are still available!
๐ Start bot - @MK_DEV_AI_BOT
Weโve added some exciting new commands to make your experience even better:
๐ /shorturl - Shorten a long URL into a compact link
๐ท /qr - Generate a QR code from text or a URL
๐ /ip - Show your public IP and the botโs server IP
๐ฐ /ipinfo - Get detailed geolocation and ISP info of an IP address
๐ฎ /pincode - Lookup postal information by PIN/ZIP code
๐ฐ /gold - Check todayโs Gold & Silver prices (using API)
โก All the previous features are still available!
๐ Start bot - @MK_DEV_AI_BOT
๐1๐1
โค1๐ฅ1
chat_id = message.chat.id
msg = message.text.strip()
# Check if user only typed /ig without a URL
if msg.lower() == "/ig":
bot.sendMessage(
chat_id=chat_id,
text="โ Please provide an Instagram Video URL like this:\n/ig https://instagram.com/p/ExampleVideo"
)
raise ReturnCommand()
# Remove command prefix
if msg.lower().startswith("/ig "):
msg = msg[4:].strip()
else:
bot.sendMessage(chat_id=chat_id, text="โ Only Instagram links are supported.")
raise ReturnCommand()
# Validate Instagram URL
if not ("instagram.com" in msg or "instagr.am" in msg):
bot.sendMessage(chat_id=chat_id, text="โ Please enter a valid Instagram URL.")
raise ReturnCommand()
# Show typing animation
bot.sendChatAction(chat_id=chat_id, action="typing")
bot.sendChatAction(chat_id=chat_id, action="typing")
# Encode URL and build API request
encoded_url = msg.replace(" ", "%20")
api_url = f"your_api_url={encoded_url}"
try:
response = HTTP.get(api_url, timeout=60, proxy=True)
# Handle API failure
if response.status_code != 200:
bot.sendMessage(
chat_id=chat_id,
text="โ ๏ธ Sorry, we couldn't fetch the Instagram video. The service may be down or the URL is not supported."
)
raise ReturnCommand()
# Parse JSON safely
try:
data = response.json()
except:
bot.sendMessage(chat_id=chat_id, text="โ ๏ธ Unable to process video information.")
raise ReturnCommand()
# Check for error from API
if data.get("error"):
bot.sendMessage(chat_id=chat_id, text="โ Unable to fetch the video. Please check the link or try again later.")
raise ReturnCommand()
# Send video info
title = data.get("title", "Instagram Video")
thumbnail = data.get("thumbnail")
duration_sec = data.get("duration", 0)
duration_text = f"{duration_sec//60}m {duration_sec%60}s"
caption = f"๐ฌ {title}\nโฑ Duration: {duration_text}"
if thumbnail:
bot.sendPhoto(chat_id=chat_id, photo=thumbnail, caption=caption)
else:
bot.sendMessage(chat_id=chat_id, text=caption)
# Send videos as playable files
for media in data.get("medias", []):
quality = media.get("quality") or media.get("type") or "Video"
url = media.get("url")
bot.sendVideo(chat_id=chat_id, video=url, caption=f"{quality} Quality", supports_streaming=True)
except:
# Generic friendly error
bot.sendMessage(chat_id=chat_id, text="โ ๏ธ Sorry, something went wrong while fetching the Instagram video. Please try again later.")
๐1
Developer MK
chat_id = message.chat.id msg = message.text.strip() # Check if user only typed /ig without a URL if msg.lower() == "/ig": bot.sendMessage( chat_id=chat_id, text="โ Please provide an Instagram Video URL like this:\n/ig https://instagrโฆ
Instagram Video Download "typ" (Telebot creator code)
๐ฅ1
#command /start
typ
#command "check"
chat_id = message.chat.id
user_id = message.from_user.id # <- must be user ID
# Save user ID
users = Bot.getData("all_users")
if users is None:
users = []
if message.chat.id not in users:
users.append(message.chat.id)
Bot.saveData("all_users", users)
# Get user's first name safely
if hasattr(message.from_user, "first_name"):
first_name = message.from_user.first_name
else:
first_name = "User"
# Function to check if user joined channel
def check():
channels = ['@web_developer_m_k']
for i in channels:
try:
member = bot.getChatMember(str(i), user_id)
if member.status == 'left':
return False
except:
return False # If API fails or invalid user
return True
if check() == True:
# Welcome message
welcome_text = f"* ๐ Welcome! {first_name}*\n\n" \
"*To Use Chat Bot ๐ฌ* โ _Just Type Your Message And Send Directly!_ \n\n"\
"Thank you for joining our channel.\n\n*Make sure to pin ๐ this bot so you can access it anytime \n\n*"\
"_To explore all tools, type /menu or tap the\n๐๐ผ three-line menu below_ "
bot.sendMessage(
chat_id=chat_id,
text=welcome_text,
parse_mode="markdown",
)
else:
# User not joined โ show join button
keyboard = InlineKeyboardMarkup()
keyboard.row(
InlineKeyboardButton("๐ข Join Channel", url="https://t.me/web_developer_m_k")
)
join_msg = bot.sendMessage(
chat_id=chat_id,
text="*๐ You Must Join Our Channel*\n\nTo use this bot, join the official channel first. Then send /start again.",
reply_markup=keyboard,
parse_mode="markdown"
)
# Save join message id
Bot.saveData(f"join_msg_{chat_id}", join_msg.message_id)#command check
typ
#command "check"
// Optional: delete the triggering message
if (request.data) {
Api.deleteMessage({
chat_id: request.message.chat.id,
message_id: request.message.message_id
});
}
// Check channel membership using Api.getChatMember
let channelUsername = "@web_developer_m_k"; // your channel
let userId = request.from.id;
let memberInfo = Api.getChatMember({
chat_id: channelUsername,
user_id: userId
});
`Telegram
Developer MK
๐ป Web Developer | ๐ Sharing coding tutorials, ๐ก tips & ๐ง Working Projects.
๐ฌ Community Chat: @Developer_mk_group
๐ฉ Contact me: @devoloper7
๐ฌ Community Chat: @Developer_mk_group
๐ฉ Contact me: @devoloper7
๐2โค1๐คฃ1