Skip to content Skip to sidebar Skip to footer
Showing posts with the label Webapp2

Fetching A Lot Of Urls In Python With Google App Engine

In my subclass of RequestHandler, I am trying to fetch range of urls: class GetStats(webapp2.Reques… Read more Fetching A Lot Of Urls In Python With Google App Engine

Webapp2 Sessions In Google App Engine

I just figured out how to implement the webapp2 sessions in my Google app engine project using pyth… Read more Webapp2 Sessions In Google App Engine

Pymongo/bson: Convert Python.cursor.cursor Object To Serializable/json Object

New to MongoDb and Python (webapp2). So, I was fetching some data from a mongodb database. But I wa… Read more Pymongo/bson: Convert Python.cursor.cursor Object To Serializable/json Object

How Do I Make A Trailing Slash Optional With Webapp2?

I'm using the new webapp2 (now the default webapp in 1.6), and I haven't been able to figur… Read more How Do I Make A Trailing Slash Optional With Webapp2?

Google App Engine Development Server Throws The Following Error Whenever I Try To Run It

I'm trying to create a webservice using webapp2 and datastore in python. But whenever i try to … Read more Google App Engine Development Server Throws The Following Error Whenever I Try To Run It

Attributeerror: 'unicode' Object Has No Attribute 'pop'

I have this piece of python code in gae. def post(self): cases=self.request.get('cases'… Read more Attributeerror: 'unicode' Object Has No Attribute 'pop'

Gae's Webapp2_extra.i18n Can't Import Babel On Macosx

I followed the tutorial to enable i18n functionality in my GAE project: http://webapp-improved.apps… Read more Gae's Webapp2_extra.i18n Can't Import Babel On Macosx

Where Is The Best Place To Put One-time And Every-time Code In GAE/Python?

I am new to Google App Engine and Python. I am having trouble understanding some basic questions ab… Read more Where Is The Best Place To Put One-time And Every-time Code In GAE/Python?