vote up 13 vote down star

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 anyway to do http put in python?

flag

52% accept rate
"Anyway" is an adverb meaning "regardless". You want "any way". See englishplus.com/grammar/00000283.htm – Jim Sep 22 '08 at 17:14

6 Answers

vote up 14 vote down check
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|flag
Looks like a bit of a dirty hack, but it seems to work elegantly and completly – Rory Sep 22 '08 at 9:14
vote up 0 vote down

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|flag
I don't really wanna use some random guys http library – Rory Sep 22 '08 at 9:10
vote up 1 vote down

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|flag
I'm sure it would work, but I want something a bit more pythonic – Rory Sep 22 '08 at 9:13
vote up 5 vote down

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

link|flag
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
vote up 3 vote down

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|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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