Re: [google-appengine] Re: import 2nd library

2020-11-11 Thread John Iacovacci
Issue solved, I did not have the entries in requirements.txt. Error messages too vague On Wed, Nov 11, 2020 at 9:13 PM wesley chun wrote: > That's quite odd John. Can you temporarily rename your main.py and deploy > this code as main.py and run it? > > from flask import Flask > from google

Re: [google-appengine] Re: import 2nd library

2020-11-11 Thread wesley chun
That's quite odd John. Can you temporarily rename your main.py and deploy this code as main.py and run it? from flask import Flask from google import cloud app = Flask(__name__) @app.route('/') def hello_world(): return 'Hello, World!' Pls reply with what shows up in your App Engine

Re: [google-appengine] Re: import 2nd library

2020-11-11 Thread John Iacovacci
I've isolated the problem down to my app engine python code not allowing me to import more than one module. Even a simple hello world app will only allow me to implement one import. Every time I add a module to any of my program I get errors. On Wed, Nov 11, 2020 at 2:58 PM 'Elliott (Cloud

[google-appengine] Re: import 2nd library

2020-11-11 Thread 'Elliott (Cloud Platform Support)' via Google App Engine
Hello, To isolate the problem, does this code run locally on your machine? On Wednesday, November 11, 2020 at 12:18:48 PM UTC-5 john.ia...@gmail.com wrote: > I'm trying to import the datastore module(or anytime I try to import a > second module for that matter) in my app engine standard code.