import urllib.request

with urllib.request.urlopen("http://www.fmf.uni-lj.si/") as response:
    print (response.read())
