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...
How to use Java GAE with an external jabber server like Openfire? Any guide?
...
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...
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...
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...
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...
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?
...
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...
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,
...
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?
...
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...
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...
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...
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...
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...
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...
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...
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 ?
...
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
...
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 ...