make a simple search function for homepage
- From: "HYRY" <zhangry@xxxxxxxxxx>
- Date: 30 Oct 2006 22:11:25 -0800
I want to add some simple search function for my homepage. It need to
search through all the html files of my homepage (about 300 pages), and
highlight the search words.
I made some test with HTMLParser, it works but slow. So, my question is
how can I improve its speed?
from HTMLParser import HTMLParser
class HightLightParser(HTMLParser):
def __init__(self, outfile, words):
self.outfile = outfile
self.words = words
self.found = False
HTMLParser.__init__(self)
def handle_starttag(self, tag, attrs):
self.outfile.write( self.get_starttag_text( ) )
def handle_endtag(self, tag):
self.outfile.write( "</%s>" % tag )
def handle_data(self, data):
for word in self.words:
data = data.replace(word, "<font color=red>%s</font>" % word)
#highlight
self.outfile.write(data)
class SearchParser(HTMLParser):
def __init__(self, words):
self.words = words
self.found = False
HTMLParser.__init__(self)
def handle_data(self, data):
for word in self.words:
if word in data: # search
self.found = True
words = ["the"]
x = SearchParser(words)
data = file("input.htm").read()
x.feed(data)
if x.found:
y = HightLightParser(file("output.htm", "w"),words)
y.feed(data)
.
- Follow-Ups:
- Re: make a simple search function for homepage
- From: James Stroud
- Re: make a simple search function for homepage
- Prev by Date: Re: Talks at PyCon that Teach How to Be Better Programmers
- Next by Date: Re: enumerate improvement proposal
- Previous by thread: Cann't connect zope server
- Next by thread: Re: make a simple search function for homepage
- Index(es):
Relevant Pages
|