2022-01-31 12:41:47 +00:00
|
|
|
from config import BOT_USERNAME
|
2022-02-14 05:38:16 +00:00
|
|
|
from driver.decorators import check_blacklist
|
2022-01-31 12:41:47 +00:00
|
|
|
from driver.filters import command
|
2022-02-06 04:51:00 +00:00
|
|
|
from driver.database.dbpunish import is_gbanned_user
|
2022-01-31 12:41:47 +00:00
|
|
|
from pyrogram import Client
|
|
|
|
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup, Message
|
|
|
|
from youtube_search import YoutubeSearch
|
|
|
|
|
|
|
|
|
|
|
|
@Client.on_message(command(["search", f"search@{BOT_USERNAME}"]))
|
2022-02-14 05:38:16 +00:00
|
|
|
@check_blacklist()
|
2022-01-31 12:41:47 +00:00
|
|
|
async def ytsearch(_, message: Message):
|
|
|
|
if len(message.command) < 2:
|
|
|
|
return await message.reply_text("/search **needs an argument !**")
|
|
|
|
query = message.text.split(None, 1)[1]
|
|
|
|
m = await message.reply_text("🔎 **Searching...**")
|
|
|
|
results = YoutubeSearch(query, max_results=5).to_dict()
|
|
|
|
text = ""
|
|
|
|
for i in range(5):
|
|
|
|
try:
|
|
|
|
text += f"🏷 **Name:** __{results[i]['title']}__\n"
|
|
|
|
text += f"⏱ **Duration:** `{results[i]['duration']}`\n"
|
|
|
|
text += f"👀 **Views:** `{results[i]['views']}`\n"
|
|
|
|
text += f"📣 **Channel:** {results[i]['channel']}\n"
|
|
|
|
text += f"🔗: https://www.youtube.com{results[i]['url_suffix']}\n\n"
|
|
|
|
except IndexError:
|
|
|
|
break
|
|
|
|
await m.edit_text(
|
|
|
|
text,
|
|
|
|
disable_web_page_preview=True,
|
|
|
|
reply_markup=InlineKeyboardMarkup(
|
2022-02-07 15:23:27 +00:00
|
|
|
[[InlineKeyboardButton("🗑 Close", callback_data="close_panel")]]
|
2022-01-31 12:41:47 +00:00
|
|
|
),
|
|
|
|
)
|