Python ImportError: No module named main in Google app engine project
问题 I have the following app.yaml file application: gtryapp version: 1 runtime: python27 api_version: 1 threadsafe: yes handlers: - url: /images/(.*\.(gif|png|jpg)) static_files: static/img/\1 upload: static/img/(.*\.(gif|png|jpg)) - url: /css/(.*\.css) mime_type: text/css static_files: static/css/\1 upload: static/css/(.*\.css) - url: /js/(.*\.js) mime_type: text/javascript static_files: static/js/\1 upload: static/js/(.*\.js) - url: /(.*\.html) mime_type: text/html static_files: static/\1