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?
|
feedback
|
protected by bmargulies May 25 '11 at 16:03
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
| |||||||
feedback
|
|
Httplib seems like a cleaner choice.
| |||||||
feedback
|
|
I needed to solve this problem too a while back so that I could act as a client for a RESTful API. I settled on httplib2 because it allowed me to send PUT and DELETE in addition to GET and POST. Httplib2 is not part of the standard library but you can easily get it from the cheese shop. | |||
feedback
|
|
You should have a look at the httplib module. It should let you make whatever sort of HTTP request you want. | |||
feedback
|
|
I also recommend httplib2 by Joe Gregario. I use this regularly instead of httplib in the standard lib. | ||||
|
feedback
|
|
I've used a variety of python HTTP libs in the past, and I've settled on 'Requests' as my favourite. Existing libs had pretty useable interfaces, but code can end up being a few lines too long for simple operations. A basic PUT in requests looks like:
You can then check the response status code with:
or the response with:
Requests has a lot synactic sugar and shortcuts that'll make your life easier. | |||
|
feedback
|
|
You can of course roll your own with the existing standard libraries at any level from sockets up to tweaking urllib. http://pycurl.sourceforge.net/ "PyCurl is a Python interface to libcurl." "libcurl is a free and easy-to-use client-side URL transfer library, ... supports ... HTTP PUT" "The main drawback with PycURL is that it is a relative thin layer over libcurl without any of those nice Pythonic class hierarchies. This means it has a somewhat steep learning curve unless you are already familiar with libcurl's C API. " | ||||
|
feedback
|
|
Have you taken a look at put.py? I've used it in the past. You can also just hack up your own request with urllib. | |||
|
feedback
|