Trying to grab the content of website using python 3.6.2.Getting below error.
requests.exceptions.SSLError: HTTPSConnectionPool(host='www.amazon.in', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, '[SSL: TLSV1_ALERT_ACCESS_DENIED] tlsv1 alert access denied
(_ssl.c:748)'),))
Code:
import requests
from bs4 import BeautifulSoup
r=requests.get("https://www.amazon.in/")
r.content
Help me in fixing this!
access deniedin router or by firewall