1
vote
1answer
31 views

Google App Engine: Response “Content-Length” header is always 0

I followed the Google App Engine tutorial and I'm having a bit of trouble with adding content to the response object in the guestbook class. class Guestbook(webapp2.RequestHandler): def post(self): ...
0
votes
1answer
22 views

Why url X dont match regex, gae webapp2 related

Why this /download/vzC43Wji33B21DRJYSoYFQ%3D%3D do not match this app = webapp2.WSGIApplication([('/', MainHandler), ('/upload', UploadHandler), ...
1
vote
1answer
29 views

Webapp2 strict_slash returns KeyError: 'Missing Argument' for url with trailing slash when method has 2 or more args… Bug?

I've built my urls as such: #url = /index/test/argument/second # Maps to the Index handler's test method and passes in the optional arguments 'argument' and 'second' # So the handler function looks ...
0
votes
1answer
36 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
21 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
51 views

Simple static website in GAE with custom 404 error page

I am using GAE for a simple static website with just html/htm pages, pictures etc. I am also using Python 2.7. So i use a straight forward app.yaml and main.py and that works. However, when ...
0
votes
1answer
32 views

cannot access webserver resources using virtualenv and webapp2

I wanted to create a simple app using webapp2. Because I have Google App Engine installed, and I want to use it outside of GAE, I followed the instructions on this page: ...
0
votes
1answer
26 views

webapp2 changes html tags in pure text

I want to make my GAE application webapp2 compatible. This code worked great with webapp: insert = '<p><font color="red"><b>some text</b></font></p>' ...
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
2answers
42 views

Detect if URL contains parameters in GAE

I would like to parse the URL upon load to see if it has any parameters. I'm just trying to set up a basic test to see if that's possible. What is the correct regex to send a url like ...
0
votes
0answers
24 views

PATCH method handler on Google AppEngine WebApp2

I tried to use a def patch(): method in my webapp2.RequestHandler to support partial resource updates, but then saw that the allowed methods are frozen in webapp2.py: allowed_methods = ...
0
votes
1answer
46 views

Webapp2 Jinja2 Dict in List in Dict

I have the following context dict: context={'idp': []} Later on, I append a few dicts into the list: context['idp'].append({'provider','login_url'}) context['idp'].append({'provider','login_url'}) ...
0
votes
0answers
40 views

webapp2 Routing and Templating

Are you supposed to pass the configuration of jinja2 like so import webapp2 def_config['webapp2_extras.jinja2']={ 'template_path' : 'custom/path/to/templates' } app = webapp2.WSGIApplication([ ...
0
votes
1answer
26 views

Why can't I add an attribute to a datastore object (dynamically) and store it in session?

I am not able to retrieve attributes in session that have been added dynamically to a datastore object. Here's a (simplified) example... To save time on suggestions, I do not want to actually hard ...
0
votes
1answer
47 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
1answer
36 views

Model binding in python - automatically turn parameters passed in an http post request into fields of a class

Do you know any way to safely and automatically turn parameters passed in an http post request into fields of a class? I'm not using django, I'm working with webapp2 I sort of implemented this ...
0
votes
1answer
83 views

In GAE Channel API the onmessage is not called

I am building an app for GAE using python API. It is running here. It is a multi-player game. I use the Channel API to communicate game state between players. But in the app engine the onmessage ...
0
votes
0answers
28 views

user_required decorator to authenticate user and company and branch by default

Each Branch of each company gets their own dashboard. A user visits the dashboard for their branch (but is redirected to /dashboard/<company>/<branch>/login if they aren't logged in). ...
0
votes
0answers
67 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 ...
1
vote
0answers
43 views

In PyCharm, webpages refresh in debug mode, not in run mode

I'm writing a GAE webapp using Python 2.7, webapp2, and Jinja. In development, I run the app under PyCharm 2.7.1 on a Max OSX 10.7.5 (Lion). I'm currently using Chrome 26.0.1410.43 as my browser. I ...
0
votes
1answer
35 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 == ...
0
votes
0answers
31 views

Request not going to correct webapp2.WSGIApplication

I have been working on developing an application using Google App Engine, and I have a separate webapp2.WSGIApplication in my main program for my API to not initiate error handling. This is what it ...
0
votes
1answer
36 views

webapp2_extras.jinja2 compile template from variable

Having this property to get the instance of the class jinja2 @webapp2.cached_property def jinja2(self): # Returns an instance of :class:`Jinja2` from the app registry. return ...
0
votes
0answers
48 views

in pydev, webapp2's autocomplete isn't work.(partly)

I try to write my HelloWorld project in pydev with gae package. I do step by step as google's tutorial, and all things' done. I can see HelloWorld on localhost:8080, and other projects are all ok. ...
1
vote
0answers
53 views

GAE: How can a handler return a webapp2.Response when using sessions and overriding `dispatch`?

I adapted this sample code in order to get webapp2 sessions to work on Google App Engine. What do I need to do to be able to return webapp2.Response objects from a handler that's inheriting from a ...
0
votes
1answer
100 views

Image upload not working with App Engine NDB: 405 Method Not Allowed

I followed this tutorial https://developers.google.com/appengine/docs/python/tools/webapp/blobstorehandlers to allow users upload image in my app. It works for my app which uses Python 2.5 environment ...
1
vote
3answers
125 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): ...
0
votes
1answer
71 views

webapp2 route containing regex does not work

I want to make use of the following regex in some of my routes to enable the formatting of the response content: RedirectRoute(r'/mypath/<:|json|xml>', handler=myhandler, ...
1
vote
1answer
96 views

How to JSON format an HTTP error response in webapp2

I am using webapp2 for development in App Engine. What I would like to do is to send a custom JSON formatted response in case of an error. For example when the request length is larger that a ...
0
votes
1answer
100 views

For <input type=“file” …> self.request.POST[name] is just a string

Using the GAE "helloworld" example app as a base, but changing "helloworld.py" to: import webapp2 class MainPage(webapp2.RequestHandler): def get(self): ...
0
votes
0answers
117 views

Best way to store this data in data store google app engine

I am trying to make a phone app for my university's notice board. This is the notice board. And each notice is served as an HTML page. The URL structure of the notices are simple, with "docid" ...
0
votes
3answers
71 views

How can I retrieve the email address from a Google Account and store it in my app's user profile when my user logs in using gae-simpleauth?

I'm attempting to build a very simple user permissions system with webapp2's auth library. I'm using gae-simpleauth to log users in with their Google account. I'm hoping to compare the user's email ...
0
votes
1answer
61 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) ...
5
votes
3answers
278 views

how to render django template from code instead of file

I am writing a Google App Engine webapp that renders some html to a Django template. I want to either render the template using either a file or just some json thats very similar to that in file. Is ...
1
vote
1answer
38 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
51 views

My html to webapp2 search form doesn't work

my search term comes through to my handler as an empty string. Here's the components: html form: <form class="navbar-search" action="/search"> <input type="text" ...
0
votes
1answer
83 views

Storing User Objects in Google App Engine

Trying to figure out the best practice when storing Webapp2 Auth user objects as a reference in a google app engine ndb domain entity. The 3 ways I can think to do it class MyEntity(ndb.Model): ...
0
votes
0answers
31 views

Invalid Try/Except in webapp2 [closed]

I'm a beginer in python and GAE and was wondering why this is cousing a Error 500 ? Withouth the try catch it works fine. class DemoHandler(BaseHandler): def get(self, param): param = ...
1
vote
1answer
57 views

Redirect Route strict slash

I'm trying to use strict slash with webapp2 redirect route and I'm getting this value error - ValueError: Routes with strict_slash must have a name. This is an example of one of my routes - ...
1
vote
1answer
75 views

webapp2 python regex in routing

I'm trying to get webapp2 to handle urls in the form: /case/e3627 where 'e3627' can be any alphanumeric string Here is my routing arguments: app = ...
0
votes
0answers
43 views

How do I apply a class to the HTML representation of a field generated by WTForms GAE model_form()?

I have a form instance created from a class generated by WTForms' GAE model_form() function. I would like to selectively add a class to some of the form fields' HTML representations. I'm having ...
0
votes
0answers
71 views

devappserver2.py combines and lower-cases Set-Cookie (and other) headers

I'm using devappserver2.py from the latest SDK (1.7.5). I need to set two cookies, so I do it like this: cookie_suffix = 'Path=/' if self.request.json_body.get('remember', False): cookie_suffix ...
0
votes
1answer
56 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
59 views

Possible to find out if # in URL with python app engine

Is there a way to find out if the current URL for the webhandler contains a # ? I can't get written out the URL when i use a #. self.request.url returns only the base URL when a URL with # is GET on ...
0
votes
1answer
27 views

Wildcard domain with federated type application on GAE

I have used Steps to make wildcard sub-domain to work on Google app engine, Godaddy and amazon route. Its working nicely for application with the authentication type (found in application setting in ...
1
vote
2answers
178 views

GAE: Enabling Edge Cache with webapp2 (Python)

There has been this new video on youtube demonstrating the strength of EdgeCaching in the GAE architecture, and at this particular point in the video they demonstrate how easy it is to leverage: ...
1
vote
2answers
83 views

Google App Engine Application Cache

In google app engine i have created my own user API appropriately called user so it doesn't interfere with the google app engine API users. Like most multiuser websites, two "versions" of the site are ...
1
vote
1answer
35 views

Using webapp2 i18n in unit tests

I'm using webapp2 with webapp2_extras.i18n for a Google App Engine app. I have a unit test script as described on the bottom here: ...

1 2 3 4 5 6