I have a list of around 6000 URL's and I have to check for each URL if its response code is 200 (or) not. By using a normal request.get() using urllib, it's taking a lot of time as its loading the entire HTML page and gives back the response code.
Is there any way to just get the code of the URL just not entirely loading the web page in the backend?