DEV Community

hub
hub

Posted on

Answer: Unable to scrape different company names from a static webpage using the requests module

Based on the output of the code below your site returns a status code of 403, which means that a client is forbidden from accessing a valid URL.

The headers of this response indicate that the site is protected by Cloudflare

'Server': 'cloudflare', 'CF-RAY': '78d95f0bafebad68-ATL'

import requests
link =

Top comments (0)