This is a simple script that gets the html code from a website and prints it. It uses the "requests library"
import requests url = 'http://harisbaltzakis.com/' r = requests.get(url) print(r.text)