I am writing a GAE application and have run into an import problem.
My app.yaml
has the following lines:
- url: /py/classes/
static_dir: py/classes
- url: /py/lib
static_dir: py/lib
- url: /py/bin/signin
script: py/bin/signin.py
I am keeping a python file, titled employee.py, containing the class employee, in the classes folder, and a signin.py script in the bin folder which tries - at the moment unsuccessfully - to import the employee class. I have tried, amongst others:
import employee
import py.classes.employee
Neither option works. Could you please let me know what I am doing wrong?
Thank you in advance.