1
vote
3answers
34 views
python script optimization for app engine
i have the following script i am using to scrap data from my uni website and insert into a GAE Db
from mechanize import Browser
from BeautifulSoup import BeautifulSoup
import re
i …
0
votes
1answer
14 views
How do I create a unique property in python on google app engine?
In some database technologies, for a attribute in a record, you can guarantee uniqueness of that attribute within the entire database. An example of this might be a email_address a …
1
vote
1answer
19 views
App Engine model filtering with Django
hi i am using django app engine patch i have set up a simple model as follows
class Intake(db.Model):
intake=db.StringProperty(multiline=False, required=True)
#@permerlink …
0
votes
1answer
27 views
What is the performance cost of named keys or “pre-generated” keys in Google App Engine?
If you used named keys in Google App Engine, does this incur any additional cost? Put another way, is it any more expensive to create a new entity with a named key rather than a ra …
0
votes
2answers
13 views
Where/How should I do validation and transformations on entities in Google App Engine?
In Ruby on Rails, each model entity has a "validate_on_*something*" hook method, that will be called before the entity is actually persisted to the database. I would like similar f …
0
votes
2answers
33 views
django template url function not matching in app
I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. …
0
votes
1answer
17 views
In Google App Engine, what happens when I change the Class related to a persisted object?
My model class looks as follows:
from google.appengine.ext import db
class SnapShotBase(db.Model):
'''
The base class from which all entity snapshots will inherit.
''' …
1
vote
2answers
26 views
Printing several binary data fields from Google DataStore?
I'm using Google App Engine and python for a web service. Some of the models (tables) I have in my web service have several binary data fields in them, and I'd like to present this …
1
vote
1answer
61 views
Puzzling App Engine Datastore Issue (ListProperty)
Ok so I have the same python code locally and in the gae cloud.
when I store an entity locally, the ListProperty field of set element type datetime.datetime looks like so in the D …
0
votes
2answers
23 views
django unprintable templatesyntaxerror object caused by urlconf?
I'm trying to get a django project set up, and I seem to be having trouble with my urlconf. I'm not sure what the deal is, and the error below isn't entirely helpful to me. I don …
0
votes
2answers
28 views
GAE Image Posting to Datastore through Django Form
I'm working on a little side project that involves posting an avatar to a users profile page, seems straight forward enough. I'm following the instructions from the "Using the Imag …
0
votes
1answer
40 views
Where can I find a (current) example of code to bulk upload data to Google AppEngine? (For localhost, too.)
I've tried to do it like they describe in the AppEngine docs but I can't get it to accept my upload. (I haven't tried to download.) I want to get it working in the development envi …
1
vote
1answer
32 views
How do I unit test Django views on the Google App Engine?
I am struggling to run unit tests using the Django Client class on the Google App Engine. I downloaded GAEUnit (v2.0a for Django) and I am trying to use that as my testing framewor …
5
votes
2answers
125 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 …
2
votes
3answers
97 views
Is Java or Python better for writing a web-page-source-checking web service on Google App Engines?
Hello everybody!!!
I hope you all have a nice day.
I want to write a web service that would check some web page HTML code every 20 minutes and e-mail it to my mail box. Here I wa …
