I'm trying to scrape all news items from this website. They are not showing in the source code: http://finansdanmark.dk/nyheder/
I've tried using Firefox' LIVE Http Headers and Chrome's developer tool but still can't figure out what goes on behind the scenes.
This is my code so far:
r = requests.post("http://finansdanmark.dk/nyheder/proxy.gba")
text = r.text
print (text)
Can anyone help?