I am trying in python (2.7.13) to get the source code of a webpage (having the current foreign exchange rates). Normally that is no problem with requests.get(url, headers) etc. In this case I can download/get the webpage, but some parts seems to be (base64 ?) encoded.
However when I visit the page in a browser and I view the source code: the right (decoded) code will be shown in the browser. Question is: how can I get the (decoded) web page source. The url is: https://www.isbank.com.tr/en/foreign-exchange-rates
Part of the code I use is:
url = "https://www.isbank.com.tr/en/foreign-exchange-rates"
resp = requests.get(url)
out = resp.text