import requests
a = 'http://www.wipo.int/branddb/en/?q={"searches":[{"te":"coca%20cola","fi":"BRAND"}]}'
b = requests.get(a)
print(b.text)
Here is a simple webpage. If I paste url in browser and open the link, I get the results I want to see. If I check DOM, I get to see whole html, however if I use python requests, I get more or less nothing. Anybody understand why and how could i solve that?