Tagged Questions
0
votes
1answer
39 views
Routing in webapp2
I am playing around with Google Course Builder.
It's built using Google App Engine and the webapp2 framework.
I am not very familiar with webapp2 and routing in general and I think that's the reason ...
0
votes
1answer
22 views
How do I add anti-clickjacking support to an app I'm building in webapp2 for google app engine?
I know there's WSGI middleware for django, but I can't find anything for webapp2. Would the django middleware work?
0
votes
1answer
32 views
Import/Include config Python
Is it possible to store config such as config['webapp2_extras.API'] in a different file, and then include it in an other?
Pseudocode:
# config.py
config['webapp2_extras.API'] = {
'option' : value,
...
0
votes
1answer
40 views
Webapp2 Routing and Python inclusion
In the webapp2 URI routing there are some examples using webapp2.Route(r'/', handler='...'), and some aren't using r'/' -- so my question is, what is the R for, and should I be using it?
Also, if ...
0
votes
1answer
48 views
Iterate over GQL query fields
I am trying to implement an 'Edit' function for entities in a google app engine datastore. So if a key is specified for an datastore entity I would like to fill a form with values associated with this ...
0
votes
0answers
68 views
Python MVC Routing
I have the same question as this; -- it has never been answered.
I want to be able to route my requests in a similar way ASP.net MVC does.
For example the address /Home/Index/query-string/ should ...
0
votes
1answer
36 views
webapp2 user store, how do you query it
I'm using the webapp2 user store and I need to query User accounts. Where is that store located?
webapp2_extras.auth
something like
myusers = Users.query().filter(Users.somefield == ...
1
vote
3answers
131 views
How to render template when using webapp2 micro framework with view funtions?
I'm using the webapp2 micro framework as described in the webapp2 guide
(http://webapp-improved.appspot.com/guide/handlers.html):
import webapp2
class WSGIApplication(webapp2.WSGIApplication):
...
1
vote
1answer
64 views
High replication delete delay in local server
I have this code using Python with --high_replication --use_sqlite:
def delete(self, id):
product = Product.get_by_id(long(id))
if product is None:
self.session.add_flash('Product ...
1
vote
1answer
21 views
webapp2 autoconversion of request params / handler arguments?
I have the following route and accompanying handler:
Route(r'/book/<id:\d+>', handler='handlers.BookHandler')
def show(self, id):
logging.info('in show book handler... %s', id)
...
1
vote
1answer
39 views
Does webapp2 provide some mechanism to invoke DELETE and PUT actions form html forms
Given the following routes:
Route(r'/app/product/<id:\d+>', handler='app.handlers.ProductHandler:show',
methods=['GET'], name='show-product'),
Route(r'/app/product/<id:\d+>',
...
0
votes
1answer
57 views
webapp2 error deleting cookies
I'm using webapp2 with python 2.7 on GAE 1.7.5. I set cookies like so:
self.response.set_cookie('clientID', self.request.get('clientID'), max_age=constants.day_timeout)
but when I try to delete ...
1
vote
1answer
62 views
Lazy load Oauth2Decorator callback_handler using webapp2
This works fine :
secrets = 'client_secrets-gae.json'
decorator = OAuth2DecoratorFromClientSecrets(os.path.join(os.path.dirname(__file__), secrets),
...
0
votes
2answers
46 views
Appengine Error Ignoring file too long
I'm new in appengine, i'm trying to deploy my project but i have error:
ERROR appcfg.py:2189 Ignoring file 'odm2.txt': Too long (max 32000000 bytes, file is 56182913 bytes)
It is possible to upload ...
2
votes
2answers
268 views
Passing parameters to a webapp2.RequestHandler object in python
Is there any way to pass parameters to a RequestHandler object when I create my WSGIApplication instance?
I mean
app = webapp2.WSGIApplication([
('/', MainHandler),
('/route1', Handler1),
...
0
votes
0answers
54 views
Will the webapp2 request handler start after appengine_config completes
Appengine_config runs first, when a new instance starts. Will the webapp2 request handler start AFTER appengine_config has been completed? I am using : thread safe is true.
0
votes
0answers
90 views
webapp2.WSGIApplication and url encoding/decoding issue only with mapped domain
i am experiencing issues with non ascii characters in urls (coming from bots).
the strange thing is that this issue happens only when i access my app with the mapped domain.
in my app i need to ...
0
votes
1answer
149 views
Integrating Chat with (webapp2 + python 2.7 + Jinja2)
I'm trying to add chat to my site and am integrating some code with my existing code. The chat app works fine on its own when it's all set up in the original main.app file. But when I try to move that ...
1
vote
2answers
102 views
How do I get appstats to work with webapp2 and extended routing on GAE?
I'm trying to get Appstats to work on my GAE Python app. I'm using webapp2 with python 2.7.
I've followed the instructions from ...
3
votes
0answers
123 views
Is there a function to find the current handler for the named route in my app
I can get the currect app / WSGI instance with : webapp2.get_app() and the current request instance : webapp2.get_request() but how to get the current webapp2 handler instance from :
class ...
1
vote
1answer
348 views
How to parse path-parameter with webapp2
I am coming from a Java REST background to Python on Google App Engine's. I need some help using webapp2 with path-parameters. Below is an example of how Java would read a request. Will someone please ...
0
votes
0answers
32 views
Does app engine has an instance / global request function (hook) or can I create one
I want to execute a function when a request is send to my GAE application. In webapp2 you have a dispatcher. But this dispatcher is bound to a single webapp2 app.
Does app engine or WSGI has a ...
1
vote
2answers
127 views
Temporary page while redirect on google app engine
I want to create a temporary page where the browser lingers for a few seconds and is then redirected to another page. Working on python on Google App Engine. I thought the below should work(I am a ...
1
vote
2answers
99 views
What's the best way to get data back from a Task in GAE to form a loop of Task Queues?
I have a long-running process in a task queue that is causing a DeadlineExceededError because the task can take longer than 10 minutes. As I described in this question, the long-running process has a ...
3
votes
3answers
127 views
POSTs that contain a semicolon are cut off after semicolon
If I have a POST parameter of
d={"data": "<span>hello</span>"}
which is a JSON string and it works fine and request.POST.get('d') contains the full string. But if I change it to
d = ...
2
votes
1answer
69 views
All responses are returning with 'None' appended
In my Google App Engine app every request returns with 'None' appended.
For example I have my own view controller implementation and when I return
self.response.out.write(view.toString())
I get ...
1
vote
1answer
167 views
GAE users.get_current_user() returns None
I am trying to get the current user object in a Google App Engine app however it seems to be returning nothing.
I used the example code at ...
2
votes
1answer
834 views
User Accounts with (Python 2.7 + Webapp2 + Google App Engine + Jinja + NDB + WTForms)
I have been racking my brain for weeks trying to get this authentication module to work under the webapp2 framework using Jinja, NDB and WTForms. I've looked online everywhere and have reached my ...
0
votes
0answers
113 views
How to solve webapp2 session / cookie conflicts between browser tabs
Cookies are shared between browser tabs. How can I solve this in webapp2. I did not find a webapp2 preferred solution. I am using the default secure cookie backend.
With get_session I can create a ...
0
votes
1answer
154 views
Using flask and webapp2 in the same webapp
I am new bee to python. I use webapp2 and jinja2 for my webapp in GAE python. I have a login function in flask framework.
Now I need to integrate the login function to my webapp.
www.example.com/ ...
0
votes
1answer
147 views
Custom Error Page for Over Quota Error in webapp2
To fetch a 500 error I used webapp2 to show a custom error page : http://webapp-improved.appspot.com/guide/exceptions.html#exceptions-in-the-wsgi-app.
This page is always shown when an error occurs. ...
1
vote
1answer
51 views
Delete entity from index?
Am I doing this right? I'm trying to delete an entity from the index in this method, it's the first time I try so I don't know if it's working:
def get(self):
timeline = datetime.now () - ...
0
votes
2answers
136 views
Is there a way to handle requests with locale-dependant wsgi handlers?
Is there a way to handle requests from different geographic locations with a different WSGI handler? Specifically I want to allow all requests from one local (US) and redirect all others to a holding ...
1
vote
1answer
89 views
How do I collect up logs for an App Engine request using Python logging?
Using Google App Engine, Python 2.7, threadsafe:true, webapp2.
I would like to include all logging.XXX() messages in my API responses, so I need an efficient way to collect up all the log messages ...
2
votes
1answer
349 views
how to organise files with python27 app engine webapp2 framework
I've gone through the getting started tut for python27 and app engine: https://developers.google.com/appengine/docs/python/gettingstartedpython27/
By the end of the tut, all the the classes are in ...
1
vote
2answers
252 views
How to modularize the URL handling functions?
With Python web application frameworks such as Flask, webapp2 and Pyramid, how can each route-handling-function can have its own py file? I don't want all these functions piled up together in a single ...
1
vote
2answers
648 views
How to have different py files to handle different routes?
I have been studying python for quite sometime now and very recently I decided to get into learning web development side of things. I have experience with PHP and PHP frameworks, along with ruby, ...
0
votes
6answers
230 views
Print a dictionary and save it to a file, then copy it to a py file to use?
Using a DB, I want to create a very large dictionary. If I save it to disk, when pickled, it takes about 10 MB of space.
What I want to do is:
Save this dictionary as it is to disk, in order to open ...
2
votes
1answer
2k views
Django vs webapp2 on App Engine [closed]
I would like to know your opinion of which of these two web frameworks (Django & webapp2) is better for using on App Engine Platform, and why?
Please don't say that both are completely different, ...
0
votes
1answer
276 views
webapp2, self.request.path change issue on GAE
in my GAE app i use webapp2.RequestHandler.initialize to do custom stuff to the request.
up to a few days ago changing os.environ['PATH_INFO'] did influence calling self.request.path on the ...
1
vote
2answers
1k views
How to make a redirect and keep the query string?
I want to make a redirect and keep what is the query string. Something like self.redirect plus the query parameters that was sent. Is that possible?
0
votes
1answer
118 views
How to indicate ownership when user is an ndb.expando
I have a non-ndb entity that is created and a webapp2 User who owns this object. Is it possible to keep the key as an instance variable? I get an exception trying to do this:
'Ad' object has no ...
0
votes
1answer
1k views
“TypeError: object of type 'NoneType' has no len()” after logging in to Webapp2 Auth sample code
I'm trying to follow the Auth example for Webapp2 that can be found here: http://code.google.com/p/webapp-improved/issues/detail?id=20
The actual main.py is this:
# -*- coding: utf-8 -*-
import ...
3
votes
3answers
3k views
GAE + Python2.7 + webapp2 + AJAX
Are there any tutorials or code examples related to AJAX implementation for GAE + Python2.7 + webapp2.
I have tried to follow instructions below:
http://code.google.com/appengine/articles/rpc.html
...
2
votes
1answer
194 views
How to allocate_ids correctly?
I want my ids to be < 999999999 but now trying to program that it seems to have the opposite effect, I'm only getting ids larger and when I try to allocate ids start > end ?
start, end = ...
-1
votes
1answer
228 views
MLM downline distribution count
I make my first MLM software and I think I managed to code how to get the points from the downline even though it is a recursive problem I didn't use recursion and I might refactor to a recursive ...
2
votes
2answers
330 views
Organizing my config variable for webapp2
For simplicity I think I need to rewrite this to just one statement
config = {'webapp2_extras.jinja2': {'template_path': 'templates',
'filters': {
'timesince': filters.timesince,
...
1
vote
3answers
3k views
How to solve a UnicodeDecodeError?
I get a strange error message when trying to read non-ascii from the datastore:
'ascii' codec can't decode byte 0xc3 in position 5: ordinal not in range(128)
Traceback (most recent call last):
File ...
5
votes
2answers
888 views
How to create a query for matching keys?
I use the key of another User, the sponsor, to indicate who is the sponsor of a User and it creates a link in the datastore for those Users that have a sponsor and it can be at most one but a sponsor ...
-3
votes
1answer
134 views
Please help me improve my routing
My routing works towards me but it's built from a long time and since the framework was updated to webapp2 so I mix routings and don't know which way is best. Could you help me improve which and how I ...

