[EMAIL PROTECTED] (Peter Saffrey) writes: > [EMAIL PROTECTED]:~$ ls /usr/lib/python2.3/site-packages/id3 > ID3.py ID3.pyc ID3.pyo > > >>> import id3.ID3 > Traceback (most recent call last): > File "<stdin>", line 1, in ? > ImportError: No module named id3.ID3 > >>>
It is missing a file named "__init__.py" at /usr/lib/python2.3/site-packages/id3 Without it Python won't consider "import id3" as valid (and consequently won't import submodules as well). Just 'touch' the file and try again. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list