BigTable GQL ER Entity Relationship Database Tutorial for Google App Engine
Are you not so sure about Google App Engine’s BigTable ER – Entity Relationship Database Model? Here’s a simple tutorial which shows you how to create databases the ER way plus a little bit of GQL....
View ArticleBuild Your Own Search Engine with Yahoo Search API and Google App Engine
Here’s a tutorial which shows you how to build your own search engine with the Yahoo Search API and Google App Engine. Ironic really isn’t it? Here is the Yahoo Search API Google App Engine Tutorial....
View ArticleDjango Helper for Google App Engine
Another Django Helper for Google App Engine. Read the article here. You can get all the code for this new Google App Engine helper for Django here.
View ArticlePython Universal Feed Parser
Parsing feeds in Python is best achieved with Mark Pilgrims Universal Feed Parser. Feedjack is a Django based Feed Aggregator.
View ArticleGoogle App Engine SDK Nginx Proxy Pass proxy_pass Ubuntu
Here’s a quick set up for Google App Engine’s SDK on Nginx. server { listen 80; server_name yourhotdomain.com; access_log logs/yourhotdomain.access.log; location / { proxy_pass http://localhost:8080; }...
View ArticleContent Type Mime Type – Headers for xml in Google App Engine
If you want to change the content type or mime type for your Google App Engine template: self.response.headers['Content-Type'] = "application/xml" Full example: class MainPage(webapp.RequestHandler):...
View ArticleXml, Html Special Characters Tidy Python App Engine
You can’t use ‘tidy’ python binding with App Engine as far as I know so use this for cleaning up your xml and html characters: import cgi string = str('I hate monkey & hyena characters')...
View ArticleApp Engine StringListProperty Merge Join Attributes Pattern
App Engine StringListProperty and merge join queries offer the ability to perform searches for a variety of purposes. class AttributeTags(db.model): tags = db.StringListProperty() Say for instance you...
View Article