Tagged Questions

0
votes
3answers
38 views

Can I store a python dictionary in google’s BigTable datastore without serializing it explicitly?

I have a python dictionary that I would like to store in Google's BigTable datastore (it is an attribute in a db.Model class). Is there an easy way to do this? i.e. using a db.DictionaryProperty? Or …
0
votes
1answer
22 views

How to change the default property on a set in python and Google AppEngine

In the following code: class ClassA(db.Model): name = db.StringProperty() class ClassB(db.Model): name = db.StringProperty() deleted_flag = db.BooleanProperty() classA = …
1
vote
2answers
56 views

How to create an internationalized Google App Engine application

I would like to provide my Python GAE website in the user's own language, using only the tools available directly in App Engine. For that, I would like to use GNU gettext files (.po and .mo files). …
6
votes
6answers
243 views

Why use Django on Google App Engine?

When researching Google App Engine (GAE), it's clear that using Django is wildly popular for developing in Python on GAE. I've been scouring the web to find information on the costs and benefits of …
-2
votes
3answers
82 views

Open a new browser window from a Python script in Google App Engine

A Python script at Google App Engine fetches data into a HTML page. What is the best way to open a new browser window from the script or HTML page? JavaScript doesn't work.
3
votes
4answers
85 views

How to parse somewhat wrong JSON with Python?

I have a following JSON string coming from external input source: {value: "82363549923gnyh49c9djl239pjm01223", id: 17893} This is wrong-formatted JSON string ("id" and "value" must be in quotes), …
1
vote
2answers
65 views

In Python, how can I test if I’m in Google App Engine SDK?

Whilst developing I want to handle some things slight differently than I will when I eventually upload to the Google servers. Is there a quick test that I can do to find out if I'm in the SDK or …
0
votes
0answers
24 views

Security Sandbox Issues with Flex/AS3 and AppEngine

I'm having trouble with an AS3 AMF RemoteObject request that is hosted on App Engine. I have a crossdomain.xml file in the root of the domain, and also one at the remoting endpoint. Here are the …
3
votes
7answers
255 views

Is Google App Engine right for me?

Hi, I am thinking about using Google App Engine.It is going to be a huge website. In that case, what is your piece of advice using Google App Engine. I heard GAE has restrictions like we cannot …
1
vote
3answers
56 views

App engine app design questions

I want to load info from another site (this part is done), but i am doing this every time the page is loaded and that wont do. So i was thinking of having a variable in a table of settings like 'last …
0
votes
5answers
86 views

Improve code: test for key in dict and store in datastore

Hey, I'm fairly new to python I have this piece of code which stores the birth info to the datastore in Google App Engine. The code works but is it the correct way to do it? Is there a simpler way to …
1
vote
2answers
56 views

On the google app engine, why does my ‘import’ statement fail on Live, but work on Dev(localmachine)?

I have a python/django application that runs on the google app engine. My views.py file has some imports... from commands.userCommands import RegisterUserCommand from commands.accountCommands import …
0
votes
2answers
53 views

Authenticated request in Google App Engine using fetch() function: how to provide the information in the header of the request?

Hello everybody!!! I am trying to pass automatically, using Google App Engine, my password and ID to eBay, to this page: …
0
votes
1answer
22 views

bulkloader.py --dump without authentication

Is there some way or using the bulkloader.py dump and restore funtionality without authentication? I have tried using: - url: /remote_api script: …
1
vote
3answers
53 views

How should I deal with a circular import in Google App Engine?

If I have "a.py" from google.appengine.ext import db class A(db.Model): db.ReferenceProperty(b.B) ...other stuff and another file "b.py" from google.appengine.ext import db class …

1 2 3 4 5 34 next
15 30 50 per page