[google-appengine] Re: What is the most common IDE for GAE/Python?

2013-04-29 Thread Jason Elbourne
In my opinion, Sublime 2 seems to be the professional's choice right now for IDE. You can really customize / hack it to fit your coding style and It has great plug-ins available. Definitely worth looking at. There are great video on youtube teaching you the tips and trick of sublime 2. I used

[google-appengine] Re: Could The App Engine Python 2.7 Tutorial Be Broken?

2012-07-14 Thread Jason Elbourne
Not sure if this would be the issue or just the way the last meesage was typed but the code block of: # Ancestor Queries, as shown here, are strongly consistent with the High # Replication Datastore. Queries that span entity groups are eventually # consistent. If we omitted the ancest

[google-appengine] Re: Could The App Engine Python 2.7 Tutorial Be Broken?

2012-07-13 Thread Jason Elbourne
I have not run the code in the tutorial but it looks fine to me. The error you have received leads me to think you do not have the variable assigned for 'guestbook_name' guestbook_name=self.request.get('guestbook_name') this will give you 'None' or the actual name if it has been passed. T