Hi,
You can scrape anything with Python and BeautifulSoup. If I need to scrape anything from the web I prefer to do this with Python, can't help with specific tools unfortunately.
You can render first using Selenium and then parse the content with BeautifulSoup. Maybe you are refering to performing XHR requests and not being able to parse since javascript has not executed?BeautifulSoup wouldn't work here because the client-side of YouTube is based on dynamic JavaScript.
BeautifulSoup only works on HTML-based websites.
Cheers,
Alfon.
You can render first using Selenium and then parse the content with BeautifulSoup. Maybe you are refering to performing XHR requests and not being able to parse since javascript has not executed?
can u share a linkI found some tools on github, but really you should check on your own. It's a niche case, so would you mind me asking what are you planning on doing with contacts?
Sure, this one scrapes emails and contacts from what I gather:can u share a link