Re: [google-appengine] 500 Server Error

2021-06-24 Thread John Iacovacci
App engine is very unforgiving and 500 is a generic error unfortunately Google does not have very good descriptive error reporting. I normally change code to a successful version (keep removing until something works) or use stackoverflow to debug. On Wed, Jun 23, 2021 at 3:23 AM Rishi Patni <

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

2020-11-11 Thread John Iacovacci
; Errors" section. > Also paste relevant lines from your app.yaml (or the whole thing). > > Thanks, > --Wesley > > On Wed, Nov 11, 2020 at 12:17 PM John Iacovacci > wrote: > >> I've isolated the problem down to my app engine python code not allowing >> me to

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

2020-11-11 Thread John Iacovacci
gt;> Please try again in 30 seconds. >> >> >> or 502 Gateway ngix errors. >> >> >> Any thoughts? >> >> >> Thanks >> >> >> John Iacovacci >> >> main.py >> from flask import Flask, request, render_template >>

[google-appengine] import 2nd library

2020-11-11 Thread John Iacovacci
try again in 30 seconds. or 502 Gateway ngix errors. Any thoughts? Thanks John Iacovacci main.py from flask import Flask, request, render_template # START Translate requirements from google.cloud import translate_v2 as translate translate_client = translate.Client() import datastore # END