There is 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.
[edit]
Typed wrong name for method, sorry everyone o.O
feedback
|
|
With Requests, making PATCH requests is very simple:
| |||
|
feedback
|
|
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. | |||
feedback
|
|
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! | |||
|
feedback
|
|
Seems to work in 2.7.1 as well.
| ||||
|
feedback
|