I’m trying to reach page: https://meritindia.in . The site doesn’t open for me in my current location, but a friend from India confirmed that it works fine for him. I tried to set some proxy for my request ( found something there: http://free-proxy.cz/en/proxylist/country/IN/https/ping/all ), but no luck. Is there a way [apart from vpn] to reach that page?
A piece of Python code that I’m using:
import requests
proxies = {
'https': '125.99.106.250:3128'
}
url = "https://meritindia.in"
response = requests.get(url, timeout=30, proxies=proxies)
print(response.status_code)