27
votes
9answers
2k views
Feedback on using Google App Engine?
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 …
10
votes
3answers
721 views
Is BigTable slow or am I dumb?
I basically have the classic many to many model. A user, an award, and a "many-to-many" table mapping between users and awards.
Each user has on the order of 400 awards and each award is given to …
10
votes
4answers
1k 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 = …
9
votes
7answers
4k views
Any CMS is Google App Engine compatible?
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 …
7
votes
3answers
245 views
Should I use google-app-engine-django or app-engine-patch or neither or something else?
Do I need either to make Django easier to use on GAE? Anyone had good or bad experience of either or any equivalent? Is there much difference between these? Which is easier to use?
Regards
Geoff
6
votes
5answers
2k views
Django + Pydev/Eclipse + Google App Engine - possible?
Has anyone been able to get Google App Engine/Django working in Pydev/Eclipse? I tried this but had difficulty getting Pydev to recognize all of the externally linked folders (django plugins) that I …
5
votes
7answers
468 views
Is Google App Engine a worthy platform for a Lifestreaming app?
I'm building a Lifestreaming app that will involve pulling down lots of feeds for lots of users, and performing data-mining, and machine learning algorithms on the results. GAE's load balanced and …
4
votes
6answers
1k views
Turbogears 2 vs Django - any advice on choosing replacement for Turbogears 1?
I have been using Turbogears 1 for prototyping small sites for the last couple of years and it is getting a little long in the tooth. Any suggestions on making the call between upgrading to Turbogears …
4
votes
3answers
779 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 …
4
votes
3answers
201 views
On GAE, how may I show a date according to right client TimeZone ?
On my Google App Engine application, i'm storing an auto-updated date/time in my model like that :
class MyModel(db.Model):
date = db.DateTimeProperty(auto_now_add=True)
But, that date/time is …
4
votes
6answers
439 views
should I drop Google App Engine?
I am developing some kind of financial market simulation on GAE. Although I have attained much progress, I have begun to consider dismissing GAE and going for a Django + rdbms solution for the last …
4
votes
3answers
611 views
GAE + Django. app-engine-patch or django-gae-helpers?
I'm building app using GAE and wanted to use Django for that. Which "patch" is better? app-engine-patch or django-gae-helpers? I mean functionality and future of them (will one of them die soon).
3
votes
3answers
100 views
Django & webapp living together on GAE?
Is it possible to have both frameworks available?
So that I could have
from google.appengine.ext import webapp
from django.template.loader import render_to_string
class …
3
votes
4answers
414 views
Migrating Django Application to Google App Engine?
Hello,
I'm developing a web application and considering Django, Google App Engine, and several other options. I wondered what kind of "penalty" I will incur if I develop a complete Django application …
3
votes
6answers
283 views
Django — I have a small app ready, Should I go on private VPS or Google App Engine?
Hi,
I have my first app, not that big, but it is the first step. (next big one on the way)
Now if I want to put it on my own Linode VPS, I have to configure mod_python or mod_wsgi, as well as …
