Switched tc-rest to webob

Small update on my toy tc-rest project: I switched to using WebOb for creating HTTP Request and Response objects. Cleaned up the code a bit, but a real dispatcher is what’s needed to really remove the cruft.

I’m anxious to extend the API and add features, but I have no clue when I’ll have time to touch it again. In the mean time I’ve pushed tc-rest to bitbucket.org if you want to take a look.

This entry was posted in Open Source, Python, Technology and tagged , , , , . Bookmark the permalink.
  • http://krys.ca Krys

    Hi there,

    I am also working on a small REST app to provide json data. For dispatching, I have recently been using wsgiservice (available on PyPi). It’s working out pretty well for me. It might help you too.

    Good luck!

  • http://ionrock.org/blog/ Eric Larson

    I’ve been using Selector[1] for my dispatching needs for quite a while. I’m also a fan of WebOb. It is pretty simple but makes some basic things just that much simpler. The http exception codes, for example, are very helpful.

    [1] http://www.lukearno.com/projects/selector/