I'm using Skype4Py with Python 3.2.3 on windows. There was an error while trying to import Skype4Py package and I did the following to figure out what it was:
import sys
try:
import Skype4Py
except:
print (sys.exc_info()[0])
print (sys.exc_info()[1])
The output is as follows:
<class 'Import error'>
No module named skype
I installed Skype4Py with the windows installer. I can see the Skype4Py in Python32\Lib\site-packages
. How do I get this to work?