
import requests

file = open("uai.html", "w")

x = requests.get('http://www.udp.cl')
print(x.text)
file.write(x.text)
file.close()
