mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 09:44:50 +00:00
* style: format code with isort, Ruff Formatter and Yapf This commit fixes the style issues introduced inf9f107eaccording to the output from isort, Ruff Formatter and Yapf. Details: None * refactor: autofix issues in 2 files Resolved issues in the following files with DeepSource Autofix: 1. misskaty/plugins/download_upload.py 2. misskaty/plugins/nightmodev2.py * style: format code with isort, Ruff Formatter and Yapf This commit fixes the style issues introduced in1bc1345according to the output from isort, Ruff Formatter and Yapf. Details: https://github.com/yasirarism/MissKatyPyro/pull/300 * refactor: autofix issues in 2 files Resolved issues in the following files with DeepSource Autofix: 1. misskaty/plugins/dev.py 2. misskaty/plugins/misc_tools.py * style: format code with isort, Ruff Formatter and Yapf This commit fixes the style issues introduced in58d2f1aaccording to the output from isort, Ruff Formatter and Yapf. Details: https://github.com/yasirarism/MissKatyPyro/pull/300 --------- Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> Co-authored-by: Yasir Aris M <git@yasirdev.my.id>
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
# * @author Yasir Aris M <yasiramunandar@gmail.com>
|
|
# * @date 2023-06-21 22:12:27
|
|
# * @projectName MissKatyPyro
|
|
# * Copyright ©YasirPedia All rights reserved
|
|
import os
|
|
from asyncio import gather
|
|
|
|
from pyrogram.types import Message
|
|
from pySmartDL import SmartDL
|
|
|
|
from misskaty import app
|
|
from misskaty.core.decorator import new_task
|
|
from misskaty.helper.localization import use_chat_lang
|
|
|
|
__MODULE__ = "WebSS"
|
|
__HELP__ = """
|
|
/webss [URL] - Take A Screenshot Of A Webpage.
|
|
"""
|
|
|
|
|
|
@app.on_cmd("webss")
|
|
@new_task
|
|
@use_chat_lang()
|
|
async def take_ss(_, ctx: Message, strings):
|
|
if len(ctx.command) == 1:
|
|
return await ctx.reply_msg(strings("no_url"), del_in=6)
|
|
url = (
|
|
ctx.command[1]
|
|
if ctx.command[1].startswith("http")
|
|
else f"https://{ctx.command[1]}"
|
|
)
|
|
download_file_path = os.path.join("downloads/", f"webSS_{ctx.from_user.id}.png")
|
|
msg = await ctx.reply_msg(strings("wait_str"))
|
|
try:
|
|
url = f"https://webss.yasirweb.eu.org/api/screenshot?resX=1280&resY=900&outFormat=jpg&waitTime=1000&isFullPage=false&dismissModals=false&url={url}"
|
|
downloader = SmartDL(
|
|
url, download_file_path, progress_bar=False, timeout=15, verify=False
|
|
)
|
|
downloader.start(blocking=True)
|
|
await gather(
|
|
*[
|
|
ctx.reply_document(download_file_path),
|
|
ctx.reply_photo(download_file_path, caption=strings("str_credit")),
|
|
]
|
|
)
|
|
await msg.delete_msg()
|
|
if os.path.exists(download_file_path):
|
|
os.remove(download_file_path)
|
|
except Exception as e:
|
|
await msg.edit_msg(strings("ss_failed_str").format(err=str(e)))
|