I run requests
url = 'https://www.yellowpages.com/boston-ma/mip/the-oceanaire-seafood-room-455904020'
r = requests.get(url)
but sometimes it takes long time and returns the Response object, and sometimes returns an error:
SSLError: HTTPSConnectionPool(host='www.yellowpages.com', port=443): Max retries exceeded with url: /boston-ma/mip/the-oceanaire-seafood-room-455904020 (Caused by SSLError(SSLError("bad handshake: SysCallError(10054, 'WSAECONNRESET')")))
usually, requests is extremely fast, but now, on this webpage and similar from this website, it's unstable. Maybe I need to use another alternative other than requests ? or it's the issue from the webpage ?