Got the starttag working as a global variable
This commit is contained in:
parent
d11087907d
commit
4865e04986
10
HTTPy.py
10
HTTPy.py
@ -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())
|
||||
Loading…
x
Reference in New Issue
Block a user