File size: 6,595 Bytes
c7dfe8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# SOURCE https://github.com/Team-ProjectCodeX
# CREATED BY https://t.me/O_okarma
# API BY https://www.github.com/SOME-1HING
# PROVIDED BY https://t.me/ProjectCodeX
# <============================================== IMPORTS =========================================================>
import json
import random
from pyrogram import Client, filters
from pyrogram.types import InputMediaPhoto, Message
from Mikobot import app
from Mikobot.state import state
# <=======================================================================================================>
BINGSEARCH_URL = "https://sugoi-api.vercel.app/search"
NEWS_URL = "https://sugoi-api.vercel.app/news?keyword={}"
# <================================================ FUNCTION =======================================================>
@app.on_message(filters.command("news"))
async def news(_, message: Message):
keyword = (
message.text.split(" ", 1)[1].strip() if len(message.text.split()) > 1 else ""
)
url = NEWS_URL.format(keyword)
try:
response = await state.get(url) # Assuming state is an asynchronous function
news_data = response.json()
if "error" in news_data:
error_message = news_data["error"]
await message.reply_text(f"Error: {error_message}")
else:
if len(news_data) > 0:
news_item = random.choice(news_data)
title = news_item["title"]
excerpt = news_item["excerpt"]
source = news_item["source"]
relative_time = news_item["relative_time"]
news_url = news_item["url"]
message_text = f"π§ππ§ππ: {title}\nπ¦π’π¨π₯ππ: {source}\nπ§ππ π: {relative_time}\nππ«πππ₯π£π§: {excerpt}\nπ¨π₯π: {news_url}"
await message.reply_text(message_text)
else:
await message.reply_text("No news found.")
except Exception as e: # Replace with specific exception type if possible
await message.reply_text(f"Error: {str(e)}")
@app.on_message(filters.command("bingsearch"))
async def bing_search(client: Client, message: Message):
try:
if len(message.command) == 1:
await message.reply_text("Please provide a keyword to search.")
return
keyword = " ".join(
message.command[1:]
) # Assuming the keyword is passed as arguments
params = {"keyword": keyword}
response = await state.get(
BINGSEARCH_URL, params=params
) # Use the state.get method
if response.status_code == 200:
results = response.json()
if not results:
await message.reply_text("No results found.")
else:
message_text = ""
for result in results[:7]:
title = result.get("title", "")
link = result.get("link", "")
message_text += f"{title}\n{link}\n\n"
await message.reply_text(message_text.strip())
else:
await message.reply_text("Sorry, something went wrong with the search.")
except Exception as e:
await message.reply_text(f"An error occurred: {str(e)}")
# Command handler for the '/bingimg' command
@app.on_message(filters.command("bingimg"))
async def bingimg_search(client: Client, message: Message):
try:
text = message.text.split(None, 1)[
1
] # Extract the query from command arguments
except IndexError:
return await message.reply_text(
"Provide me a query to search!"
) # Return error if no query is provided
search_message = await message.reply_text("π") # Display searching message
# Send request to Bing image search API using state function
bingimg_url = "https://sugoi-api.vercel.app/bingimg?keyword=" + text
resp = await state.get(bingimg_url)
images = json.loads(resp.text) # Parse the response JSON into a list of image URLs
media = []
count = 0
for img in images:
if count == 7:
break
# Create InputMediaPhoto object for each image URL
media.append(InputMediaPhoto(media=img))
count += 1
# Send the media group as a reply to the user
await message.reply_media_group(media=media)
# Delete the searching message and the original command message
await search_message.delete()
await message.delete()
# Command handler for the '/googleimg' command
@app.on_message(filters.command("googleimg"))
async def googleimg_search(client: Client, message: Message):
try:
text = message.text.split(None, 1)[
1
] # Extract the query from command arguments
except IndexError:
return await message.reply_text(
"Provide me a query to search!"
) # Return error if no query is provided
search_message = await message.reply_text("π") # Display searching message
# Send request to Google image search API using state function
googleimg_url = "https://sugoi-api.vercel.app/googleimg?keyword=" + text
resp = await state.get(googleimg_url)
images = json.loads(resp.text) # Parse the response JSON into a list of image URLs
media = []
count = 0
for img in images:
if count == 7:
break
# Create InputMediaPhoto object for each image URL
media.append(InputMediaPhoto(media=img))
count += 1
# Send the media group as a reply to the user
await message.reply_media_group(media=media)
# Delete the searching message and the original command message
await search_message.delete()
await message.delete()
# <=======================================================================================================>
# <=================================================== HELP ====================================================>
__mod_name__ = "SEARCH"
__help__ = """
π π¦πππ₯ππ
β *Available commands:*
Β» /googleimg <search query>: It retrieves and displays images obtained through a Google image search.
Β» /bingimg <search query>: It retrieves and displays images obtained through a Bing image search.
Β» /news <search query> : search news.
Β» /bingsearch <search query> : get search result with links.
β *Example:*
β `/bingsearch app`: return search results.
"""
# <================================================ END =======================================================>
|