Here is a bot that will print out and save to a file the complete html of a website. Wow, made my me, at last. I been working on this for over a week now.
It does work very well, made in python2.7.12 om win 7. So let have a look at it.
I want to thank you all for the help
EDIT: I added some more code, you now can name the file you are saving too.

import urllib urls = input ('Enter the web site address you want to scrape like this "http://www.google.com" ') website = urls filename = input ('Enter the file name you want like this "MyFile.txt "') htmlfile = urllib.urlopen(website) htmltext = htmlfile.read() f = open(filename,"w") #opens file with name of "test.txt" f.write(htmltext) f.close() print htmltext input("Press the enter key to exit")This is not much, but I hope to be able to give more back to the forum, I have got so much help here.
I want to thank you all for the help
EDIT: I added some more code, you now can name the file you are saving too.