1
vote
2answers
29 views
Importing python classes in the Google App Engine
I am writing a GAE application and have run into an import problem.
My app.yaml has the following lines:
- url: /py/classes/
static_dir: py/classes
- url: /py/lib
static …
0
votes
0answers
16 views
Fixtures for Google App Engine
Hello everyone. Are there any Python tools to create fixtures on Google App Engine? I tried Fixture(http://farmdev.com/projects/fixture/). It is the most awesome tool I have come a …
3
votes
1answer
50 views
Java PDF Library that works on GAE?
Since GAE has severe restrictions like - "A Java application cannot use any classes used to write to the filesystem"...
Is there a good Java PDF library that can write the PDF to …
0
votes
2answers
28 views
How do I move data from local appengine datastore to remote datastore?
I can see how to download the remote datastore to local, and how to upload a CSV to the remote app engine server as outlined here:
Uploading and Downloading Data
But is there a w …
0
votes
2answers
28 views
Programatically access Google App Engine Quota Details
Does anyone know if it is possible to access via code either from within App Engine SDK or some form of WebAPI your current account quota details.
I would like to be able to track …
5
votes
2answers
110 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 …
0
votes
1answer
21 views
Google app engine datastore reference or not?
hi,
i am filling up a big table with text items from different countries. My question is:
Should i use a referencePropery to link to languages in another table?. Thats the way i w …
0
votes
1answer
26 views
Problem with db.get in Google App Engine
When I run the following code:
query = datastore.Food_Item.all()
results = query.fetch(1)
foodA = results[0]
foodB = db.get(foodA.key())
I would expect foodA and …
0
votes
2answers
49 views
Google app engine authentication
Hi guys,
I would like my iphone app to store & get data from my app engine application, but how can i make sure only my app makes these requests?
Do i have to make a gmail ac …
0
votes
1answer
15 views
Why ItemSkippedException?
I am trying to update content in Google sites and am reading the stream in exception VersionConflictException.
When I check the stream it is all fine and is completely loaded in P …
2
votes
3answers
86 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 …
0
votes
1answer
25 views
Google App Engine Task Queue on GWT
I'm looking at Google App Engine's new task queue API for Java and I'm having a hard time relating that to my GWT application. If I wanted to use a task queue to do some asynchrono …
0
votes
2answers
23 views
Not authorized to write to this feed
I am calling
service.insert(new URL(getContentFeedUrl()), newAttachment);
for Google sites file upload using MediaStreamSource in servlet and get following exception
com.goog …
0
votes
1answer
19 views
appcfg.py upload_data is failing with expected <directory> even though I’ve got it
I am having trouble getting the bulk uploader to work. I have been
following the tutorial here:http://code.google.com/appengine/docs/
python/tools/uploadingdata.html.
When I ente …
1
vote
2answers
28 views
upload file using inputstream in GAE java
I am trying to upload file to google sites and am obtaining the stream using apache commons file upload.
I get the input stream as under
InputStream is = fileItem.openStre …
