vote up 0 vote down star

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?

flag

Thanks for answers - I feel like a bonehead if it's just the case, haha. I'll try again tonight. – Owen Sep 15 '08 at 17:29

closed as no longer relevant by Owen Sep 30 '08 at 17:59

3 Answers

vote up 2 vote down check

It's because the name is case-sensitive. Try:

import eyeD3
link|flag
vote up 0 vote down

From the eyed3 website: http://eyed3.nicfit.net/

 Reading the contents of an mp3 file containing either v1 or v2 tag
 info:

     import eyeD3
     tag = eyeD3.Tag()

It looks like you have the wrong case on the 'd'?

link|flag
vote up 0 vote down

According to the Example on the page you linked to. The Import is case sensitive. Have you tried this?

import eyeD3

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.