Through my extensive research I've discovered that there is an HTTP method becoming popular called "Patch" (it is being implemented in Rails 4.0). Its kind of like the PUT method, except it is used for attribute updating rather than replacing an entire object. I've found that I have need for this method in piston. I also need to replace objects sometimes, so I can't just use PUT for updating attributes, I need both. I wanted to see if I could find a way to use PATCH. Does anyone know if piston supports this method, or know of a way to make piston support this method. I couldn't find it in their documentation anywhere.
I'm using piston with django on python 2.7.
Let me know if I didn't make my question clear enough.
Thanks