29
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 …
20
votes
4answers
1k views
Project structure for Google App Engine
Hi all.
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 …
14
votes
7answers
4k 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 …
12
votes
5answers
712 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 …
12
votes
5answers
2k 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: …
11
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
8answers
2k 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 …
9
votes
7answers
5k 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 …
8
votes
3answers
190 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 …
8
votes
4answers
305 views
rules for slugs and unicode
After researching a bit how the different way people slugify titles, I've noticed that it's often missing how to deal with non english titles.
url encoding is very restrictive. See …
8
votes
8answers
2k 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?
7
votes
3answers
187 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 …
7
votes
4answers
238 views
Pure python solution to convert XHTML to PDF
Hello,
I am after a pure Python solution (for the GAE) to convert webpages to pdf.
I had a look at reportlab but the documentation focuses on generating pdfs from scratch, rather than converting …
7
votes
5answers
1k views
Python: Check if uploaded file is jpg
How can I check if a file uploaded by a user is a real jpg file in Python (Google App Engine)?
This is how far I got by now:
Script receives image via HTML Form Post and is processed by the …
7
votes
8answers
3k 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?
