alirezamika / autoscraper

A Smart, Automatic, Fast and Lightweight Web Scraper for Python
MIT License
6.16k stars 648 forks source link

Youtube parsing doesn't work #90

Open Vponed opened 1 year ago

Vponed commented 1 year ago
from autoscraper import AutoScraper
url = "https://www.youtube.com/@danleeman"
wanted_list =["Automating Completion of SmartSuite Projects"]
requests_args = {
    "timeout": 120,}
scraper = AutoScraper()
result = scraper.build(url=url, wanted_list=wanted_list,request_args=dict(requests_args))
print(result)

[]