webapp2 is a lightweight Python web framework compatible with Google App Engine's webapp.
1
vote
1answer
27 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
21 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
0answers
8 views
Webapp2 Create an index page for a subset of Handlers
I am in the process of writing some js unit tests (using qunit) for my python webapp2 application, and I wish to create an index page of all of my unit test suites. Each unit test suite is mapped to ...
1
vote
1answer
26 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
34 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
47 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
0answers
25 views
webapp2 DomainRoute is not matching
I'm trying to launch a webserver serving several sites under several subdomains.
I'm using Pythen with webapp2 and paste. My Server is behind a router that asigns a static IP adress to the server and ...
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: ...
1
vote
0answers
21 views
webapp2/wsgiref: “multiple values for keyword argument” when running on WSGI server
The following code raises an error if I run it on a WSGI server, but not otherwise.
class Handler(webapp2.RequestHandler):
def __init__(self, template, *args, **kwargs):
print "Kwargs in ...
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
39 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
16 views
A tool to allow non-cloud users access to an Excel sheet for editing via email?
I have a spreadsheet I have placed into the Microsoft cloud service as an Excel WebApp. Users can download the spreadsheet, but if they need to edit it, they are forced to login or create a cloud ...
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
45 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
46 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
27 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
40 views
Python MVC Implementation
Should I be using webapp2 to call the right controller by importing all the controllers, and then use webapp2.Route() to call the proper controller; or should I split the URL into segments such as ...
0
votes
0answers
66 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
42 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
0answers
25 views
webapp2: automatically reload code changes
I'm looking into setting webapp2 on my own development server outside of GAE.
How can I have it reload code changes automatically? I'm using httpserver.serve(app, host='127.0.0.1', port='8008') but ...
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
35 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
47 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
51 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
96 views
How to get handler class based on the URL in a handler itself?
I thought a long time how to even ask this question. Forgive me if the title is not clear enough.
So I have single page application where all the routing is done in JavaScript (AngularJS). From the ...
0
votes
1answer
98 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
122 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
94 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
44 views
webapp2 with python3
I use webapp2 with python 2.7 with or without googleAppEngine.
I'm now trying to use it with Python 3.3
I've used PIP to install webapp2
Install run with success but when I try to import webapp2 from ...
0
votes
0answers
16 views
i18n with webapp2/babel in a loop?
Is it not possible to use i18n with webapp2/babel in a loop!? I've no idea how babel is creating the 'messeges.pot' file but I assume it scans the main.py for hardcoded strings, right? How can ...
0
votes
1answer
99 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
116 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
1answer
29 views
Store file on server for a short time period
What's the best way to name and store a generated file on a server, such that if the user requests the file in the next 5 minutes or so, you return it, otherwise, return an error code? I am using ...
0
votes
3answers
69 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
60 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 ...
0
votes
0answers
37 views
How to add multithreading support to WebApp2?
I'm using Python 2.7 with WebApp2 and I'm new to both of them. I'm running WebApp2 outside App Engine and am following official tutorial.
Provided HelloWord uses Paste web server and works fine, but ...
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
274 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
50 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" ...
1
vote
3answers
75 views
in python webapp2 how put a __init__ in a handler (for get and post)
How can I create initialization code?
When I put the __init__ contructor always tell me that parameters are wrong.
Also please gave a example also using __new__ and one using super() and why should ...


