Please excuse me I'm a newbie. I'm trying to use the fuzzywuzzy module from seatgeek. I am using Python 3
Initially, I was getting this error:
from fuzzywuzzy import fuzz
ImportError: cannot import name fuzz
I changed the import statement to import fuzzywuzzy.fuzz and Now, I'm getting this error:
File "test.py", line 4, in <module>
import fuzzywuzzy.fuzz
File "C:\Python33\lib\site-packages\fuzzywuzzy\fuzz.py", line 31, in <module>
from utils import *
ImportError: No module named 'utils'