in urlutils.py [0:0]
def geturl(url): """ Get url contents -- no caching """ req = Request(url) resp = urlopen(req) return resp.read()