#!/usr/bin/python

import urllib2

f = urllib2.urlopen("http://www.sedlabanki.is/?PageID=289")
data = f.read()
f.close()

print data

