This issue is probably a result of my limited understanding of project structures in Python and app engine as well as my limited understanding of the app.yaml file.
I have a python 2.7 project who's file structure looks like this:
Project_name
> src
app.yaml
> python
__init__.py
> package_folder1
__init__.py
package1_file.py
> package_folder2
__init__.py
My app.yaml file has this in it:
- url: /package1/resource1 script: package_folder1.package1_file1.py secure: always
This works fine when debugging on localhost using app engine's simulator, but on the server, I am getting this warning (which in this case is an error because the script is not being served) when I try to access the resource /package1/resource1:
File referenced by handler not found: python.package_folder1.package1_file1.py
I also tried changing the line in the app.yaml file to this script: package_folder1.package1_file1.py and still got the same error.
Any ideas? Thanks!
