added yahoo parser
This commit is contained in:
28
src/parsers/Yahoo/yahoo_parser.py
Normal file
28
src/parsers/Yahoo/yahoo_parser.py
Normal file
@@ -0,0 +1,28 @@
|
||||
import os
|
||||
|
||||
from playwright.sync_api import Playwright
|
||||
from playwright.sync_api import sync_playwright
|
||||
|
||||
from src.parsers.base_parser import BaseParser
|
||||
|
||||
|
||||
class YahooParser(BaseParser):
|
||||
BASE_DIR = os.path.abspath(f"downloads/Yahoo")
|
||||
|
||||
def get_video_link(self, playwright: Playwright):
|
||||
browser = playwright.chromium.launch(headless=True)
|
||||
context = browser.new_context()
|
||||
page = context.new_page()
|
||||
page.goto(url=self.params["link"], wait_until='domcontentloaded')
|
||||
link = page.get_attribute("xpath=//iframe", "src")
|
||||
return link
|
||||
|
||||
def video_download(self, link: str = None, title: str = None):
|
||||
base_link = self.params["link"]
|
||||
with sync_playwright() as playwright:
|
||||
link = self.get_video_link(playwright)
|
||||
self.params["link"] = link
|
||||
self.params['outtmpl'] = f"downloads/Yahoo/%(id)s_%(resolution)s.%(ext)s"
|
||||
file_path = super().video_download()
|
||||
self.params["link"] = base_link
|
||||
return file_path
|
||||
Reference in New Issue
Block a user