I have a long list with urls and some of them are "parked-free" by godaddy Is there any technical way to recognize such pages without opening them on browser? The page is technically live and
requests.head('url').status_code
returns 200 so it doesn't help
Trying to get the content, I only receive "Enable Javascript..." message
I also tried to use some metatags but they are not visible in beautiful soup
Selenium could probably help, but I would like to avoid it for this specific problem
Is there any simplier solution for this?