Re: Python platform/framework for new RESTful web app

2013-04-27 Thread Fábio Santos
For rest I would go with bottle. It's dead simple, and you can plug in anything you like. You can probably use django models as well, so you don't have to rewrite your model layer. Or django-smarter. On 27 Apr 2013 13:23, "Chris “Kwpolska” Warrick" wrote: > On Thu, Apr 25, 2013 at 10:00 PM, Eric

Re: Python platform/framework for new RESTful web app

2013-04-27 Thread Chris “Kwpolska” Warrick
On Thu, Apr 25, 2013 at 10:00 PM, Eric Frederich wrote: > If I wanted to create a new web application (RESTful) today with Python what > are my options given the following requirements. > > * Google Account authentication > * Facebook authentication > * Managed hosting (like Google App Engine or H

Python platform/framework for new RESTful web app

2013-04-25 Thread Eric Frederich
If I wanted to create a new web application (RESTful) today with Python what are my options given the following requirements. * Google Account authentication * Facebook authentication * Managed hosting (like Google App Engine or Heroku) but with the ability to be self-hosted later down the road.