10 Oct
2000
10 Oct
'00
9:24 p.m.
Jason Spisak writes:
I want to catalog some html files but I want to strip the html tags out. htmlparser does a good job of that, but when I try to acces that from an external method, I run into trouble. You may look at
URL:http://www.dieter.handshake.de/pyprojects/zope/CatalogSupport.html It does the same as you want to do, but without the "formatter". Alternatively, you may try a "StringIO" instance as a file object. Finally, I can use files in external methods. You should, however, be careful as several threads can execute the same external method concurrently. Therefore, your files are better not global. Dieter