0
votes
2answers
20 views
Move or copy an entity to another kind
Is there a way to move an entity to another kind in appengine.
Say you have a kind defines, and you want to keep a record of deleted entities of that kind.
But you want to separat …
0
votes
4answers
53 views
How do I upload data to Google App Engine periodically?
I'm writing an aggregation application which scrapes data from a couple of web sources and displays that data with a novel interface. The sites from which I'm scraping update every …
0
votes
1answer
28 views
How do I copy local Google App Engine Python datastore to local Google App Engine Java datastore?
I have around 4000 entities that I need to insert into a Java App Engine datastore. As I understand it, only the Python version of App Engine currently has tools to upload data fr …
0
votes
2answers
45 views
Google App Engine proxy
What would be the simplest implementation of a proxy written for GAE, which relays every URL (including POST, and header data) to a remote HTTP host, and return with it's result (w …
0
votes
4answers
48 views
Google Apps Engine mail fetch
How can I fetch mails from gmail account in Google Apps Engine Django application?
0
votes
2answers
41 views
website load testing Python script
Hello,
I am after a Python script to help me load test my Google App Engine website. I want to give it a set of URLs and a request rate (would need to use threads) and then measur …
4
votes
2answers
120 views
Using Google AppEngine as a “cache” for personal websites (wordpress blogs, wikis)
I read an article of an indie game developer who is using Google AppEngine to cache his main site and blog, to protect provide high-availability during traffic spikes (Digg, Slashd …
0
votes
2answers
26 views
Can I add Runtime Properties to a Python App Engine App?
Coming from a java background I'm used to having a bunch of properties files I can swap round at runtime dependent on what server I'm running on e.g. dev/production.
Is there a me …
0
votes
1answer
15 views
Transactions behaviour when request times out. [google app engine]
Google app engine has this useful little function in its db class,
db.run_in_transaction()
Which is suppose to garentee that your method will be rolled back if an exception is …
0
votes
1answer
54 views
Accessing POST params with same name in python
I need to get values of these check boxes with same name through HTTP "POST".
<input type="checkbox" id="dde" name="dept[]" value="dde"/>
<input type="checkbox" id="dre" …
0
votes
0answers
45 views
Filtering by dates in Google App Engine’s Datastore
I'm having some issues trying to filter a set of objets by their date. Right now I can get all of a
user's transactions like this:
> t = Transaction.all().filter("client_email …
0
votes
1answer
135 views
erlang on google app engine ?
I know python can be run on GAE
what is different erlang and python in lay man term?
can erlang run on google app engine ?
0
votes
3answers
20 views
Unable to get results when passing a string via parameter substitution in gql query
Hi,
I am able to properly pass a string variable to the gqlquery through parameter substitution, here's the code i've tried to use;
user_name = self.request.get('username') #retr …
0
votes
2answers
45 views
App Engine: What is the fastest way to check if my datastore query returns any result?
I like to check if there is any result for my datastore query in the Google App Engine Datastore. This is my query:
users = User.all()
users.filter("hash =", current_user_hash)
…
1
vote
1answer
33 views
Help with a AppEngine Handler Regex?
I've been trying to design a Google AppEngine Python handler regex and haven't been too successful in getting it to work.
I'm trying to handle API calls similar to OpenStreetMap's …
