I've been trying to use eyed3 in a Python script to edit the ID3 tags of an MP3. I've downloaded the source and ran python setup.py install. The files are now in C:\Python25\Lib\site-packages but whenever I add import eyed3 or from eyed3 import * I get an error message saying that the module eyed3 does not exist. I've checked sys.path and C:\Python25\Lib\site-packages is present.
Why Python won't recognize the eyed3 module? Does anyone have any experience installing the eyed3 Python module in Windows? Did I miss a step? Can anyone else some other way to edit ID3 tags from a Python script?
