Re: ImportError: No module named HTMLParser

2006-05-03 Thread Mike
Thanks - it turned out that the Python installation on our vendor's server is a cut-down one. I have had to place the HTMLParser source in a package off the a sys.path directory and import it from there - it now works. -- http://mail.python.org/mailman/listinfo/python-list

Re: ImportError: No module named HTMLParser

2006-05-02 Thread Fredrik Lundh
Mike wrote: > I'm getting the above message on a server installation (2.4) of Python. > I don't get the error using my script on my own machine. I'm trying to > use the non-sgmllib one - the standard HTMLParser but it won't import > on the server. How can I go about checking which file should resi

ImportError: No module named HTMLParser

2006-05-02 Thread Mike
Hi I'm getting the above message on a server installation (2.4) of Python. I don't get the error using my script on my own machine. I'm trying to use the non-sgmllib one - the standard HTMLParser but it won't import on the server. How can I go about checking which file should reside where? I'm a