import urllib
webfile = urllib.urlopen("http://i.chinaren.com/feed/index.jsp").read()
fp = file('rhf.html', 'a+')
#fp = open('rhf.html', 'a+')
fp.write(webfile)
fp.close()