when I try to send a request to this website:
import requests
requests.get('https://www.ldoceonline.com/')
An exception returned
requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))
The weird part is, if you access the website through normal approach(via a browser), they are fully functional and respond very well. Only when you try to retrieve information via web-scraping technique do you encounter this response.
Any idea on how to successfully scraping it?