Is there a way to make a request using PATCH http method in Python?
I tried using httplib, but it doesn't accept PATCH as method param.
|
|
With Requests, making PATCH requests is very simple:
|
|||
|
|
|
I tried this in Python 3, and it seemed to work (but I don't have a server handy that supports the
I'm assuming that the By the way, thanks for showing me the cool PATCH method in HTTP. |
|||
|
|
It is incredibly simple with httplib2:
I've used the httplib2 library myself in a professional REST framework that includes PATCH support. It supports Python 2.3 or later (including 3.x) and works beautifully! |
|||
|
|
|
Seems to work in 2.7.1 as well.
|
||||
|