Is there a way to make a request using the 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:
import requests
r = requests.patch('http://httpbin.org/patch')