Tagged Questions

86
votes
12answers
7k views

Feedback on using Google App Engine? [closed]

Looking to do a very small, quick 'n dirty side project. I like the fact that the Google App Engine is running on Python with Django built right in - gives me an excuse to try that platform... but my ...
67
votes
13answers
34k views

Choosing Java vs Python on Google App Engine

Currently Google App Engine supports both Python & Java. Java support is less mature. However, Java seems to have a longer list of libraries and especially support for Java bytecode regardless of ...
67
votes
14answers
31k views

What CMS runs on Google App Engine?

Is it possible to deploy any CMS (Content Management System) using Google App Engine? Wikipedia lists 4 Python CMSes and one of them is Django based. Do you know any way to make any of them to work ...
49
votes
5answers
13k views

How can I parse JSON in Google App Engine?

I'd like to parse a JSON string into an object under Google App Engine (python). What do you recommend? Something to encode/stringify would be nice too. Is what you recommend built in, or a library ...
47
votes
5answers
7k views

Project structure for Google App Engine

I started an application in Google App Engine right when it came out, to play with the technology and work on a pet project that I had been thinking about for a long time but never gotten around to ...
36
votes
19answers
13k views

Which Python framework is best for web development in Google App Engine?

Which Python framework is best for web development in Google App Engine?
34
votes
10answers
11k views

JSON serialization of Google App Engine models

I've been search for quite a while with no success. My project isn't using Django, is there a simple way to serialize App Engine models (google.appengine.ext.db.Model) into JSON or do I need to write ...
28
votes
3answers
3k views

Flask vs webapp2 for Google App Engine

I'm starting new Google App Engine application and currently considering two frameworks: Flask and webapp2. I'm rather satisfied with built-in webapp framework that I've used for my previous App ...
27
votes
7answers
3k views

Why use Django on Google App Engine?

When researching Google App Engine (GAE), it's clear that using Django is wildly popular for developing in Python on GAE. I've been scouring the web to find information on the costs and benefits of ...
27
votes
6answers
2k views

What approach(es) have you used for lightweight Python unit-tests on App Engine?

I'm about to embark on some large Python-based App Engine projects, and I think I should check with Stack Overflow's "wisdom of crowds" before committing to a unit-testing strategy. I have an ...
27
votes
15answers
13k views

Google AppEngine: How to fetch more than 1000?

First: I'm a beginner in python. How can I fetch more than 1000 record from data store and put all in one single list to pass to django?
27
votes
5answers
9k views

Google App Engine and 404 error

I've setup a static website on GAE using hints found elsewhere, but can't figure out how to return a 404 error. My app.yaml file looks like - url: (.*)/ static_files: static\1/index.html upload: ...
27
votes
16answers
12k views

Delete all data for a kind in Google App Engine

I would like to wipe out all data for a specific kind in Google App Engine. What is the best way to do this? I wrote a delete script (hack), but since there is so much data is timeout's out after a ...
27
votes
6answers
10k views

How do you access an authenticated Google App Engine service from a (non-web) python client?

I have a Google App Engine app - http://mylovelyapp.appspot.com/ It has a page - mylovelypage For the moment, the page just does self.response.out.write('OK') If I run the following Python at my ...
23
votes
2answers
670 views

How do Google App Engine Task Queues work?

I'm confused about Task execution using queues. I've read the documentation and I thought I understood bucket_size and rate, but when I send 20 Tasks to a queue set to 5/h, size 5, all 20 Tasks ...
23
votes
6answers
6k views

Django Templates and variable attributes

I'm using Google App Engine and Django Templates. I have a table that I want to display the objects look something like: Object Result: Items = [item1,item2] Users = ...
20
votes
4answers
3k views

How to use virtualenv with Google App Engine SDK on Mac OS X 10.6

I am pulling my hair out trying to figure this out because I had it working until last week and somehow it broke. When I setup a virtualenv for a Google App Engine app and start the app with ...
20
votes
12answers
4k views

Favourite Open Source Google App Engine apps (Java or Python) [closed]

To learn from good examples, what are the best open source Google App Engine applications out there? I don't care if it is Java or Python based. Please one app per answer. Feel free to add a link to ...
19
votes
6answers
417 views

Appengine, performance degradation with python27

I wanted to test python27 on appengine so I have migrated my app from python25. Performance got more than 2x slower for every request! Then I've returned to python25 and performance is again as it was ...
19
votes
3answers
3k views

Text to a PNG on App Engine (Python)

Note: I am cross-posting this from App Engine group because I got no answers there. As part of my site about Japan, I have a feature where the user can get a large PNG for use as desktop background ...
19
votes
9answers
9k views

Implement Comet / Server push in Google App Engine in Python

How can I implement Comet / Server push in Google App Engine in Python?
19
votes
3answers
11k views

Custom authentication in google app engine (python)

Does anyone know or know of somewhere I can learn how to create a custom authentication process using python and google app engine? I don't want to use google accounts for authentication and want to ...
18
votes
10answers
12k views

How do you validate a URL with a regular expression in Python?

I'm building a Google App Engine app, and I have a class to represent an RSS Feed. I have a method called setUrl which is part of the feed class. It accepts a url as an input. I'm trying to use the ...
18
votes
5answers
2k views

Possible to integrate Google AppEngine and Google Code for continuous integration?

Anyone have any thoughts on how/if it is possible to integrate Google Code commits to cause a Google AppEngine deployment of the most recent code? I have a simple Google AppEngine project's source ...
16
votes
6answers
2k views

Python cloud hosting other than Google App Engine?

What options exist for Python Cloud Hosting other than Google App Engine? I'm looking for solutions that let me write and publish code to servers that will scale up automatically to meet demand. I ...
16
votes
5answers
1k views

Debug Jinja2 in Google App Engine

When I'm running Jinja2 in Google App Engine, I get useless debugging information. I gather this is because of this item in the FAQ: My tracebacks look weird. What’s happening? If the ...
16
votes
9answers
2k views

Breaking out of the Google App Engine Python lock-in?

Are there any guidelines to writing Google App Engine Python code that would work without Google's infrastructure on other platforms? Is there any known attempt to create an open source framework ...
15
votes
9answers
574 views

What's the best way to implement a webapp to teach programming with?

In the near future, I'm going to be doing a series of short workshops for teens aged 13-17, who may not have any programming experience at all, showing them the basics of programming and webapps. The ...
15
votes
4answers
3k views

How can I have Google App Engine clear memcache every time a site is deployed?

The title asks it all. The content on the site I'm building wont change very quickly at all and so Memcache could potentially store data for months except for when I put up an update. Is there a way ...
15
votes
2answers
3k views

Working with subdomain in google app engine

How can I work with sub domain in google app engine (python). I wanna get first domain part and take some action (handler). Example:      product.example.com -> send it to ...
14
votes
3answers
550 views

Google App Engine OAuth endpoints throwing 400 in production

I implemented the experimental OAuth support for Google App Engine using Python, and have it working locally, but the endpoints are throwing a 400 when I deploy to appspot. For example, the url ...
14
votes
6answers
2k views

How to install PIL on Mac OSX 10.5.8 for Google App Engine?

I need to get PIL installed locally to test GAE's images api in my local environment. I grabbed the PIL 1.1.6 installer for Mac, and when I go to select the destination (when installing), I get the ...
14
votes
6answers
7k views

How to install Python ssl module on Windows?

The Google App Engine Launcher tells me: WARNING appengine_rpc.py:399 ssl module not found. Without the ssl module, the identity of the remote host cannot be verified, and connections may NOT ...
14
votes
2answers
3k views

How do I define a unique property for a Model in Google App Engine?

I need some properties to be unique. How can I achieve this? Is there something like unique=True? I'm using Google App Engine for Python.
14
votes
3answers
5k views

Simple User management example for Google App Engine?

I am newbie in Google App Engine. While I was going through the tutorial, I found several things that we do in php-mysql is not available in GAE. For example in dataStore auto increment feature is not ...
13
votes
2answers
953 views

High-concurrency counters without sharding

This question concerns two implementations of counters which are intended to scale without sharding (with a tradeoff that they might under-count in some situations): ...
13
votes
4answers
1k views

Copy an entity in Google App Engine datastore in Python without knowing property names at 'compile' time

In a Python Google App Engine app I'm writing, I have an entity stored in the datastore that I need to retrieve, make an exact copy of it (with the exception of the key), and then put this entity back ...
13
votes
4answers
3k views

Library to render Directed Graphs (similar to graphviz) on Google App Engine

I am looking for a Java or Python library that can render graphs in the Dot language as image file. The problem is that I need a library that I can use on Google App Engine. Basically I am looking ...
13
votes
2answers
3k views

Simple Facebook Connect in Google App Engine (Python)

Does anyone have a simple and successful demo implementation of facebook connect in an google app engine application. I am developing an web application and want facebook connect to be the primary ...
13
votes
10answers
5k views

Best opensource IDE for building applications on Google App Engine?

Looking to dabble with GAE and python, and I'd like to know what are some of the best tools for this - thanks!
13
votes
4answers
1k views

GAE - How to live with no joins?

Example Problem: Entities: User contains name and a list of friends (User references) Blog Post contains title, content, date and Writer (User) Requirement: I want a page that displays the title ...
13
votes
3answers
3k views

Credit card payments and notifications on the Google App Engine

I ported gchecky to the google app engine. you can try it here It implements both level 1 (cart submission) and level 2 (notifications from google checkout). Is there any other payment option that ...
12
votes
4answers
1k views

How to implement “autoincrement” on Google AppEngine

I have to label something in a "strong monotone increasing" fashion. Be it Invoice Numbers, shipping label numbers or the like. A number MUST NOT BE used twice Every number SHOULD BE used when ...
12
votes
4answers
895 views

How do I go about setting up a TDD development process with Google App Engine?

I'm primarily a Ruby guy, but lately I've been working on a lot of Python stuff, in particular, App Engine code. In Ruby, I'd use automated continuous integration (autotest), code coverage tools ...
12
votes
3answers
3k views

Facebook, Django, and Google App Engine

I'm experimenting with app-engine-patch (Django for GAE) on Google App Engine. And I would like to write a Facebook application. Is it possible to use PyFacebook and its middleware? Or is there some ...
12
votes
7answers
19k views

Built in python hash() function

Windows XP, Python 2.5: hash('http://stackoverflow.com') Result: 1934711907 Google App Engine (http://shell.appspot.com/): hash('http://stackoverflow.com') Result: -5768830964305142685 Why is ...
11
votes
4answers
163 views

Elegant way to avoid .put() on unchanged entities

A reoccurring pattern in my Python programming on GAE is getting some entity from the data store, then possibly changing that entity based on various conditions. In the end I need to .put() the entity ...
11
votes
2answers
195 views

Best way to support multi-login on AppEngine

I'm refactoring for a client an app that should support OpenID, Facebook Connect and custom authentication (email+password). Suppose that i have: class MyUser(db.Model): pass class ...
11
votes
1answer
348 views

How to implement a light pub-sub service on App Engine?

During his Google I/O 2009 "Offline processing on App Engine: A look ahead" presentation (video, slides), Brett Slatkin presents the Task Queue service. He states that Pub-sub systems maximize ...
11
votes
3answers
1k views

How to backup an AppEngine site?

So, you build a great shiny cloudy 2.0 website on top of AppEngine, with thousands upon thousands of images saved into the datastore and gigs of data at the blobstore. How do you backup them? Ok, so ...

1 2 3 4 5 70