> > That just means you didn't install or import the module correctly. Both > are easy. > > Place the xlrd folder hierarchy in the modules folder of your app. > > Then import it with: > xlrd = local_import('xlrd') >
Note, local_import has been deprecated. Even for modules in the application's /modules folder, you can now simply do: import xlrd Anthony