Twobob: if you provide the missing libraries, I can provide the missing imports.
It seems quite easy.... for example, for this error:
File "blablablabla/opf2.py", line 14, in <module>
from lxml import etree
ImportError: No module named lxml
meanse that in the file opf2.py it tries to import, from the lxml file, the function or class etree. But the lxml files is missing, by putting it in the same folder of opf2.py the error is fixed.
Sometime you can find "from blabla.blibli import blublu": it means that the blibli file from which import the blublu function is in the blabla folder
Somebody correct me if I'm wrong, new to python too. I've only fixed the date error using this method
Last edited by Aeris; 10-16-2013 at 01:00 PM.
|