Jacob Kaplan-Moss
Activity tagged “snippets”
Bookmarks
Django snippets: RESTful class dispatch
Yet another spin on class-based HTTP method dispatch in Django. The neat trick this time around is with a classmethod dispatcher that creates a request-local instance of the class, thus letting you save state on self without causing errors. Neat technique.