Declarative web services
I’ve been developing a lot of web services lately. I usually do this with Okapi and web.py. Somehow the tasks for creating a web service are always more or less the same. Specify URL schema Validate input parameters Request data: either from a database or from at least one other web service Identify output format using URL or HTTP headers Output data in the correct format And I think that even web.py doesn’t do a good enough job of making this easy and really fast. ...