Files
Ultroid-fork/plugins/unsplash.py
Devesh Pal d8bd901072 Ultroid v0.7 Updates
Date: 30-8-2022
Co-Authored-By: Aditya <me@xditya.me>
Co-Authored-By: Amit Sharma <48654350+buddhhu@users.noreply.github.com>
Co-Authored-By: CyrusXD <79554993+Ashutosh1478@users.noreply.github.com>
Co-Authored-By: Danish <danish@ultroid.tech>
Co-Authored-By: TechiError <error@notavailable.live>
Co-Authored-By: Arnab Paryali <arnabxd@pm.me>
2022-08-30 16:05:58 +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.fns.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).strip()
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]