import logging import traceback from html import escape import chevron from bs4 import BeautifulSoup from telegraph.aio import Telegraph from misskaty import BOT_USERNAME from misskaty.helper.http import fetch LOGGER = logging.getLogger("MissKaty") headers = { "Accept": "*/*", "User-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.19582", } async def kusonimeBypass(url: str, slug=None): result = {} _url = url if slug: noslug_url = "https://kusonime.com/{slug}" _url = noslug_url.format({"slug": slug}) try: page = await fetch.get(_url, headers=headers) soup = BeautifulSoup(page.text, "lxml") thumb = soup.find("div", {"class": "post-thumb"}).find("img").get("src") data = [] try: title = soup.find("h1", {"class": "jdlz"}).text # fix title njing haha season = ( soup.select( "#venkonten > div.vezone > div.venser > div.venutama > div.lexot > div.info > p:nth-child(3)" )[0] .text.split(":") .pop() .strip() ) tipe = ( soup.select( "#venkonten > div.vezone > div.venser > div.venutama > div.lexot > div.info > p:nth-child(5)" )[0] .text.split(":") .pop() .strip() ) status_anime = ( soup.select( "#venkonten > div.vezone > div.venser > div.venutama > div.lexot > div.info > p:nth-child(6)" )[0] .text.split(":") .pop() .strip() ) ep = ( soup.select( "#venkonten > div.vezone > div.venser > div.venutama > div.lexot > div.info > p:nth-child(7)" )[0] .text.split(":") .pop() .strip() ) score = ( soup.select( "#venkonten > div.vezone > div.venser > div.venutama > div.lexot > div.info > p:nth-child(8)" )[0] .text.split(":") .pop() .strip() ) duration = ( soup.select( "#venkonten > div.vezone > div.venser > div.venutama > div.lexot > div.info > p:nth-child(9)" )[0] .text.split(":") .pop() .strip() ) rilis = ( soup.select( "#venkonten > div.vezone > div.venser > div.venutama > div.lexot > div.info > p:nth-child(10)" )[0] .text.split(":") .pop() .strip() ) except Exception: e = traceback.format_exc() LOGGER.error(e) title, season, tipe, status_anime, ep, score, duration, rilis = ( "None", "None", "None", "None", 0, 0, 0, "None", ) genre = [] for _genre in soup.select( "#venkonten > div.vezone > div.venser > div.venutama > div.lexot > div.info > p:nth-child(2)" ): gen = _genre.text.split(":").pop().strip().split(", ") genre = gen for _, smokedl in enumerate( soup.find("div", {"class": "dlbodz"}).find_all( "div", {"class": "smokeddlrh"} ), start=1, ): mendata = {"name": title, "links": []} for smokeurl in smokedl.find_all("div", {"class": "smokeurlrh"}): quality = smokeurl.find("strong").text links = [] for link in smokeurl.find_all("a"): url = link.get("href") client = link.text links.append({"client": client, "url": url}) mendata["links"].append({"quality": quality, "link_download": links}) data.append(mendata) result |= { "error": False, "title": title, "thumb": thumb, "genre": genre, "genre_string": ", ".join(genre), "status_anime": status_anime, "season": season, "tipe": tipe, "ep": ep, "score": score, "duration": duration, "rilis": rilis, "data": data, } except Exception: err = traceback.format_exc() LOGGER.error(err) result |= {"error": True, "error_message": err} await http.delete(_url) return result async def byPassPh(url: str, name: str): kusonime = await kusonimeBypass(url) results = {"error": True, "error_message": kusonime} if not kusonime["error"]: template = """

Title : {{title}}

Genre : {{genre_string}}



Season : {{season}}



Type : {{tipe}}



Status : {{status_anime}}



Total Episode : {{ep}}



Score : {{score}}



Duration : {{duration}}



Released on : {{rilis}}



{{#data}}

{{name}}

{{#links}}

Resolution: {{quality}}

{{#link_download}}

{{client}}

{{/link_download}} {{/links}}
{{/data}} """.strip() html = chevron.render(template, kusonime) telegraph = Telegraph() if not telegraph.get_access_token(): await telegraph.create_account(short_name=BOT_USERNAME) page = await telegraph.create_page( f"{kusonime.get('title')} By {escape(name)}", html_content=html ) results |= {"error": False, "url": f'https://telegra.ph/{page["path"]}'} del results["error_message"] return results class Kusonime: def __init__(self): # skipcq pass @staticmethod async def byPass(url): return await kusonimeBypass(url) @staticmethod async def telegraph(url, name): return await byPassPh(url, name)