google-app-engine

Unable to query from entities loaded onto the app engine datastore

Hi, I am a newbie to python. I am not able to query from the entities- UserDetails and PhoneBook I loaded to the app engine datastore. I have written this UI below based on the youtube video by Brett on "Developing and Deploying applications on GAE" -- shoutout application. Well I just tried to do some reverse engineering to query from t...

Best practice on using GAE with external jabber server?

How to use Java GAE with an external jabber server like Openfire? Any guide? ...

Google App Engine and google authentication with redirect and HTTP POST

I have a form and I need to send the content to the server. I use google authentication because only authorized people can send to the server. The form is somthing like this: <form action="/blog/submit" method="post"> ... </form> The authentication is needed only during the submit, not entering the form page. So in the submit contro...

Why do I have so many DeadlineExceededErrors with google-app-engine-django?

I'm using google-app-engine-django to run Django 1.1 on Google App Engine and I'm getting lots and lots of DeadlineExceededErrors, sometimes with . My entire app is quite simple, and it's happening throughout my app, so I suspect that there is a problem with my basic settings. Any advice would be greatly appreciated! Sample error: <cla...

extract grammar features from sentence on Google App Engine

Hello, For my GAE app I need to do some natural language processing to extract the subject and object from an input sentence. Apparently NLTK can't be installed (easily) on GAE so I am looking for another solution. I noticed GAE comes with Antlr3 but from browsing their documentation it solves a different kind of grammar problem. Any...

Google App Engine, JDO, and equals/hashCode

I've got an app in Google App Engine that was working fine. I realized that one on of my JDO-enhanced objects that I forgot to implement equals and hashCode (I need to use the object in a set). So I did. I didn't really do anything special in these implementations, in fact I just used Eclipse to generate them. Like so: @PrimaryKey @Pers...

implementing GAE XMPP service as an external component to an existing XMPP server (e.g. ejabberd or OpenFire)

may i know what integration technique that you folks use to implement external component to an existing XMPP server (e.g. ejabberd or OpenFire) . Is it through sending xmpp message to another user@externaldomain directly or using mechanism like urlfetch? ...

Datastore datetimeproperty iterable?

Hi, I have model class info(db.Model): user = db.UserProperty() last_update_date = db.DateTimeProperty() I need to retrieve last_update_date for specific user. It is working good, i can retrieve this value, i can even pass it to another variable if results: for result in results: data = result.last_up...

Using google shared contacts api locally and on GAE

Hi, I noticed something strange when creating shared contact using google contacts api. This is code i am using to create contact: def AddEmail(name ,email): new_contact = gdata.contacts.ContactEntry(title=atom.Title(text=name)) new_contact.email.append(gdata.contacts.Email(address=email, ...

Django tagging migration to GAE

I have a Django app that use a django-tagging. I need to port this application to GAE. So, the main problem is to migrate tagging part. It has a complicated model, that should be rewritten to work with Google store. I think tagging is very popular django app and someone has the same problem before. Has someone a rewritten model? ...

Not able to access google spreadsheet from app engine: "Moved Temporarily"?

As of a couple of days ago I was able to access my google spreadsheets from an app (in app engine), but today it is broken. Namely, I could name= "name of my spreadsheet" self.client = gdata.spreadsheet.text_db.DatabaseClient() self.client.GetDatabases(name=name) and it worked. In fact, that still works when I run with the dev_appser...

Google app engine: "Stay signed in" expires too soon

I have a small app written in Google App Engine, and I use the basic login: required in app.yaml for authentication. This gives me the Google login box, which has the "Stay signed in" option. However, even with the "Stay signed in" option I get logged out fairly quickly (within a day or two). Is there any way to extend this timeout? Is t...

How to encode an RSA key using PKCS12 in Python?

I'm using Python (under Google App Engine), and I have some RSA private keys that I need to export in PKCS#12 format. Is there anything out there that will assist me with this? I'm using PyCrypto/KeyCzar, and I've figured out how to import/export RSA keys in PKCS8 format, but I really need it in PKCS12. Can anybody point me in the right...

Python library path

I have a python file "testHTTPAuth.py" which uses module deliciousapi and is kept in "deliciousapi.py". I have kept the files like testHTTPAuth.py lib deliciousapi.py But when i run: "python testHTTPAuth.py" it's giving error import deliciousapi ImportError: No module named deliciousapi How can handle these python librari...

Can you use Google App Engine to send emails from an application hosted elsewhere?

I need to send emails from my web application (on account creation, password reset, etc.). This application will most likely be hosted on a standard hosting site (or possibly on Amazon EC2), not on Google App Engine. However, I like the ease of use for sending email through App Engine. Is there a way to host your application elsewhe...

Can I use a MySQL database with an App Engine application

I know that App Engine has its own datastore. This is great for most cases and fairly easy to used. However, we have a MySQL database that we use for several applications and not all of them are Web based. We want to use App Engine for many reasons, but would like to have the App Engine application access our MySQL database. The document...

Do fixtures with relationships work in app-engine-patch?

I have a fixture with multiple models that I'm using for testing. It works for the basic models, but fails to create the entities for the models with relationships. Is this a known limitation of app-engine-patch or am I missing something? I'm using JSON for the fixture file. I'm creating the fixture file with 'manage.py dumpdata --fo...

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 ? ...

flex security google app engine

I'm building a flex application and want to know the alternatives regarding security. don't want to use spring using graniteds limited access application server ...

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. My current regex looks like this: /api/0.6/(.*?)/(.*?)\/?(.*?) But when this comes in: /api/0.6/changeset/723/close It incorrectly groups 723/close and ...