i am trying to collect some data from a website , but it gives me not available in your country webpage. I tried using a proxy server from the same country but it didn't help. Here is my code
import urllib.request
proxy_support = urllib.request.ProxyHandler({'http':'149.56.44.146:9201'})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)
with urllib.request.urlopen('http://www.seamless.com') as response:
print(response.read())
I don't know what's wrong here. Can someone help pls.