up vote 50 down vote favorite
17
share [g+] share [fb]

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?

link|improve this question

75% accept rate
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.

8 Answers

up vote 60 down vote accepted
import urllib2
opener = urllib2.build_opener(urllib2.HTTPHandler)
request = urllib2.Request('http://example.org', data='your_put_data')
request.add_header('Content-Type', 'your/contenttype')
request.get_method = lambda: 'PUT'
url = opener.open(request)
link|improve this answer
2  
Looks like a bit of a dirty hack, but it seems to work elegantly and completly – Rory Sep 22 '08 at 9:14
It would be less of a hack if you were to subclass urllib2.Request instead of monkey-patching it. – Jason R. Coombs Oct 18 '11 at 11:59
feedback

Httplib seems like a cleaner choice.

import httplib
connection =  httplib.HTTPConnection('1.2.3.4:1234')
body_content = 'BODY CONTENT GOES HERE'
connection.request('PUT', '/url/path/to/put/to', body_content)
result = connection.getresponse()
# Now result.status and result.reason contains interesting stuff
link|improve this answer
Don't use httplib if you (or any of your potential users) need proxy support. See this article for details. – Jason R. Coombs Oct 18 '11 at 11:55
Why would you say that? Your article clearly states that it works. See Rolf Wester's answer, he says that urllib fails but httplib works. – Spooles Oct 20 '11 at 14:41
httplib only works when the user explicitly connects to the proxy and modifies the request to include the full URL in the GET parameter. The reason urllib failed was because the http_proxy wasn't set properly. urllib uses httplib under the scenes, but also handles redirects, proxies, etc. – Jason R. Coombs Oct 21 '11 at 14:54
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.

link|improve this answer
httplib2 is borderline abandonware. It has a long list of bugs that go unfixed despite community contributions (patches). I suggest thinking twice before using httplib2 in any production environments. – Jason R. Coombs Oct 18 '11 at 11:58
feedback

You should have a look at the httplib module. It should let you make whatever sort of HTTP request you want.

link|improve this answer
Nice solution, quiet pythonic but a bit too close to the metal and involving writing a lot of other code already – Rory Sep 22 '08 at 9:11
feedback

I also recommend httplib2 by Joe Gregario. I use this regularly instead of httplib in the standard lib.

link|improve this answer
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:

payload = {'username': 'bob', 'email': 'bob@bob.com'}
>>> r = requests.put("http://somedomain.org/endpoint", data=payload)

You can then check the response status code with:

r.status_code

or the response with:

r.content

Requests has a lot synactic sugar and shortcuts that'll make your life easier.

link|improve this answer
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. "

link|improve this answer
I'm sure it would work, but I want something a bit more pythonic – Rory Sep 22 '08 at 9:13
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.

link|improve this answer
I don't really wanna use some random guys http library – Rory Sep 22 '08 at 9:10
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.