I need to upload some data to a server using HTTP PUT
in python. From my brief reading of the urllib2 docs, it only does HTTP POST
. Is there any way to do an HTTP PUT
in python?
I need to upload some data to a server using HTTP PUT
in python. From my brief reading of the urllib2 docs, it only does HTTP POST
. Is there any way to do an HTTP PUT
in python?