Hi,
I'm brand new to Google App Engine and have just been playing around with it, but for the life of me I don't understand how to import non-standard modules, and for that matter don't fully understand the app.yaml file's purposes.
Essentially I want to import SimPy (a collection of ~15 python files) from my script file, but every combination of things I do results in an ImportError, i.e:
from SimPy.Simulation import *
ImportError: No module named SimPy.Simulation
At present they're all in the same folder, and my app.yaml file reads:
application: physicalsim
version: 1
runtime: python
api_version: 1
handlers:
- url: /
script: physicalsim.py
- url: /
script: Globals.py
- url: /
script: Simulation.py
etc....
Now I'm quite certain I've got the syntax of the yaml file wrong, but can't really find any useful documentation for how to do it anywhere (bit frustrating), I don't really understand the meaning of the folders defined in some of the app.yaml files I've seen bearing in mind there is no physical structure, are they just virtual folders?
Cheers if you can help and I'm sure I've come across as a dunce :)