Files
Ultroid-fork/plugins/unsplash.py
Devesh Pal 0df53caf4c Ultroid v0.3 Updates
Co-authored-by: Aditya <xditya@ultroid.tech>
Co-authored-by: Danish <danish@ultroid.tech>
Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com>
Co-authored-by: TechiError <error@notavailable.live>
Co-authored-by: Avish Kumar <85635883+aviskumar@users.noreply.github.com>
Co-authored-by: Vɪɴᴀʏᴀᴋ Pᴀɴᴅᴇʏ <87496159+harpia-vieillot@users.noreply.github.com>
Co-authored-by: Shrimadhav U K <6317196+spechide@users.noreply.github.com>
Co-authored-by: Dark <darkbeamer.official@gmail.com>
Co-authored-by: Muhamad Risman Aziz <62795826+mrismanaziz@users.noreply.github.com>
Co-authored-by: Ashik Muhammed <84127769+MR-JINN-OF-TG@users.noreply.github.com>
Co-authored-by: MMETMA <79155572+MMETMA@users.noreply.github.com>
Co-authored-by: amirmehdinzri <94852182+amirmehdinzri@users.noreply.github.com>
2021-12-31 23:48:53 +05:30

39 lines
1.2 KiB
Python

# Ultroid - UserBot
# Copyright (C) 2021-2022 TeamUltroid
#
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
"""
✘ Commands Available -
{i}unsplash <search query> ; <no of pics>
Unsplash Image Search.
"""
from pyUltroid.functions.misc import unsplashsearch
from . import asyncio, download_file, get_string, os, ultroid_cmd
@ultroid_cmd(pattern="unsplash ?(.*)")
async def searchunsl(ult):
match = ult.pattern_match.group(1)
if not match:
return await ult.eor("Give me Something to Search")
num = 5
if ";" in match:
num = int(match.split(";")[1])
match = match.split(";")[0]
tep = await ult.eor(get_string("com_1"))
res = await unsplashsearch(match, limit=num)
if not res:
return await ult.eor(get_string("unspl_1"), time=5)
CL = [download_file(rp, f"{match}-{e}.png") for e, rp in enumerate(res)]
imgs = [z for z in (await asyncio.gather(*CL)) if z]
await ult.client.send_file(
ult.chat_id, imgs, caption=f"Uploaded {len(imgs)} Images!"
)
await tep.delete()
[os.remove(img) for img in imgs]