Hey, I'm willing to build a restful service using Django, I'm coming form RoR background and facing some problems that could be defined using the following questions:
- What package do you recommend to use to have RESTful interfaces?
- Is there a way to make nested resources like a post HTTP request to /posts/post_id/comments that adds a new comment ?
- Is there a way to add some extra actions out of the CRUD set, like having extra method called
notify
onPost
resource that works on post HTTP request.
Cheers,