Got the starttag working as a global variable

This commit is contained in:
Benjamyn Love 2017-05-22 01:55:37 +10:00
parent d11087907d
commit 4865e04986

View File

@ -6,8 +6,14 @@ starttag = ""
class MyHTMLParser(HTMLParser):
def handle_starttag(self, tag, attrs):
global starttag
starttag = tag
print starttag
#print starttag
def handle_data(self, data):
#print starttag
if starttag == "code":
print data
pass
conn = httplib.HTTPSConnection("www.python.org")
@ -15,4 +21,4 @@ conn.request("GET", "/")
r1 = conn.getresponse()
parser = MyHTMLParser()
parser.feed(r1.read())
parser.feed(r1.read())