Skip to main content

All Questions

0 votes
1 answer
105 views

has webapp2 been deprecated in app engine?

I've been trying to find a question like this for ages, couldn't find this so I'll ask it. I have tried pip installing and PYTHONPATH but it hasn't worked import webapp2 but every time it gives me: ...
ice_crm's user avatar
0 votes
0 answers
200 views

alternative to webapp2.WSGIApplication after migrating to google cloud ndb

I migrated from google.appengine.ext.webapp and ran into an issue with webapp2.WSGIApplication. I am using Django as the backend the main part looks like this application =webapp2.WSGIApplication([ ...
VickTree's user avatar
  • 909
0 votes
1 answer
258 views

google datastore: adding a user registration besides google login to existing models

Up until now, i have been using google sign in to create accounts. Now i would like have a personal login where the user gives an email and password to register. Since there are already existing ...
VickTree's user avatar
  • 909
0 votes
1 answer
43 views

appengine/Django submit form using classes

I would like to create a registration from and have tried to follow the official documentation (https://cloud.google.com/appengine/docs/standard/python/getting-started/python-standard-env). Right now,...
VickTree's user avatar
  • 909
0 votes
2 answers
61 views

How do you iterate over StringProperty as a string object?

My code is as follows: class sample(ndb.Model): text=ndb.StringProperty() class sample2(webapp2.RequestHandler): def get(self, item): q = sample.query() q1 = query.filter(item ...
aryastark1008's user avatar
0 votes
1 answer
532 views

gunicorn ImportError: No module named webob

I run an appengine project by using: gunicorn -b $3000 main:app It is a python (Django) project and i am running it on linux. The exact error is: [2020-01-17 11:30:04 +0000] [4551] [INFO] ...
dangouser13443's user avatar
0 votes
1 answer
60 views

Not able to taking multiple inputs in Webapp2 in python 2.7?

I am using this code to add two numbers import webapp2 class HomeHandler(webapp2.RequestHandler): def get(self): self.response.write('This is the HomeHandler.') class AddHandler(webapp2....
Aman Prakash's user avatar
1 vote
2 answers
334 views

webapp2 + RESTful API

I am building on Google App Engine + Python + webapp2. Part of building a modern web app requires a restful API. I know that I can do this with Flask, however I want to explore the possibility of ...
puoygae's user avatar
  • 573
1 vote
1 answer
145 views

Having to refresh after putting data into google datastore

I am trying to create a user registration form for my project but every time I try to put the data into the google datastore, it doesn't immediately reflect in the database. I redirect to a welcome ...
Daksh Rawat's user avatar
0 votes
1 answer
123 views

i want to integrate "google sign in" in my google app engine project

I want the google sign in method in my webapp2 application. Currently i can't find any method (in google searches) to do that. You can easily do that in javascript (but that's on the client side), i ...
professional debugger's user avatar
0 votes
1 answer
118 views

How to Map Custom domain for my GAE project?

I am trying to map my Google App Engine project to a custom domain and I am having issues. Right now it is available at xxx.appspot.com & I am following the directions on the following page. I ...
user123429's user avatar
0 votes
1 answer
209 views

My project is on Google App Engine(webapp2). I am not able to import firebase-admin

I am developing my web app using webapp2. I have tried to setup firebase-admin but I am not able to import it. The firebase-admin files are in the lib folder.I have also added the lib folder by vendor....
Farrukh Rashid's user avatar
1 vote
1 answer
924 views

CORS requests blocked but headers seem OK. What is wrong?

BACKGROUND: GAE has a Authenticating Users on App Engine Using Firebase tutorial where you deploy a little note-taking app called firenotes (code at github). It has a frontend which 'talks' to ...
claud29's user avatar
  • 21
0 votes
1 answer
45 views

Python webapp2 App Engine static images not displaying

I'm working on a project using python(2.7), webapp2 and App Engine in which I'm trying to display some static images, but bot got that working. Here's my director structure: |Root ├── bp_content │   ...
Abdul Rehman's user avatar
  • 5,684
0 votes
0 answers
302 views

High latency on webapp2 endpoint under appengine

I asked about this in the appengine user group here and wasn't able to resolve the issue. The issue I'm having is that, for seemingly a very light endpoint and others like it, latency seems to be an ...
Jer_TX's user avatar
  • 474

15 30 50 per page
1
2 3 4 5
49