We are a small, intelligent App development studio. We love "Building Amazing Apps", solving problems and cultivating strong relationships with our clients.
New tutorial - Building a search engine with Appengine and Yahoo
By : Shabda Raaj
I wrote a new tutorial on building a search engine using Appengine, and Yahoo Search API here. This uses pure Appengine API, and not Django, and is a tutorial on how to use Appengine without Django.
more info..Two Django+Appengine Tutorials
By : Shabda Raaj
I have posted two Tutorials for Using Django with Appengine.
- For people who do not know Django
- For people who already know Django see what we build in this tutorial
And here a few good links about the topic.
- James Bennet tells exactly why Appengine and Django are not so good together.
- Ian Bicking has an interesting take on how Appengine can change the economics of Python hosting.
- The guys at Joyent reading my mind on why I or you can not deploy any production site on Appengine. (Hint. you mean I can never move away, without writing half my ...
Using Appengine with Django, why it is pretty much unusable
By : Shabda Raaj
We are hard at work building 42topics.com, and are looking at the best places to deploy this. So when I heard about Appengine, with out of box Django support(gasp!) I was delighted. After using it for a day, and posting a tutorial, I am so disappointed.
Peeves in no particular order.
- Appengine is a very constrained environment, so out goes any chance to run background jobs.
- The ORM-API is very similar to Django, but yet the Django API is much better.
modelobj.filter('attr =', value1).filter('attr2 =', value2)ormodelobj.filter(attr = value1, attr2 = value2). Putting entity level ...
Google Appengine - First Impressions
By : Shabda Raaj
Google launched their EC2 competitor, Appengine yesterday, and all hell broke loose. And in about 24 hours, the 10,000 accounts were used up. Currently it is tied to only working with python, and Django 0.96.1 works out of the box. <!- - more - ->
The Good
- Python powered. Django works out of the box.
- No sysadmining chores.
- Promise of infinite scalability with no configuration. (Ah!)
- Free for now.
The Bad
- Python powered, if you want to use ruby/java/php, sorry you are out of luck.
- Your code is tied to Google. You might be able to reuse most of ...
- Common testing scenarios for Django app.
- Logging in Django
- Serving static files in Django
- Two Scoops of Django: Review
- Introduction to Python Workshop on February 15th, 2013
- Easy client side form validations for Django: Django Parsley
- MoreApps - Android Library Project: Open Sourced
- Tutorial: Building a Chrome app
- Password Generator App: Open Sourced
- Todo List App: Open Sourced
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- October 2011
- September 2011
- July 2011
- June 2011
- April 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- June 2010
- April 2010
- March 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- April 2009
- March 2009
- February 2009
- November 2008
- October 2008
- June 2008
- May 2008
- April 2008
Develop Twitter API application in django and deploy on Google App Engine
By : lakshman
Twitter's robust REST API enables building of good applications that leverage its increasingly large and real-time data.
Google's cloud system App Engine not only provides a scalable platform for deploying applications, but also proves to be economically viable because of its pay per resource usage model and a large free quota.
Little wonder then, there are increasingly large number of twitter apps being deployed on App Engine.
In this post, I am going to examine how to create a simple application based on twitter's REST API and deploy it on Google App Engine. A deployed version can ...
more info..