I have a cURL call that I use in PHP:

curl -i -H 'Accept: application/xml' -u login:key "https://app.streamsend.com/emails"

I need a way to do the same thing in Python. Is there an alternative to cURL in Python. I know of urllib but I'm a Python noob and have no idea how to use it.

link|improve this question

51% accept rate
feedback

5 Answers

up vote 10 down vote accepted

You can try pycurl

link|improve this answer
urllib2 is a widely used package for this kind of work. – Saurav Nov 21 '11 at 23:36
4  
Even better: docs.python-requests.org/en/latest/index.html – Saurav Nov 21 '11 at 23:42
The above is a link for a great library to do simple http requests in python (available to install via easy_install or pip in PyPi). The name/URL is slightly confusing -- at first I almost thought this was a wishlist request for a better urllib2, instead requests a very intuitive easy to use pythonic library sudo easy_install requests or sudo pip install requests. – dr jimbob Feb 29 at 20:58
feedback
import urllib2

manager = urllib2.HTTPPasswordMgrWithDefaultRealm()
manager.add_password(None, 'https://app.streamsend.com/emails', 'login', 'key')
handler = urllib2.HTTPBasicAuthHandler(manager)

director = urllib2.OpenerDirector()
director.add_handler(handler)

req = urllib2.Request('https://app.streamsend.com/emails', headers = {'Accept' : 'application/xml'})

result = director.open(req)
# result.read() will contain the data
# result.info() will contain the HTTP headers

# To get say the content-length header
length = result.info()['Content-Length']

Your cURL call using urllib2 instead. Completely untested.

link|improve this answer
feedback

If you are using a command to just call curl like that, you can do the same thing in Python with subprocess. Example:

subprocess.call(['curl', '-i', '-H', '"Accept: application/xml"', '-u', 'login:key', '"https://app.streamsend.com/emails"'])

Or you could try PycURL if you want to have it as a more structured api like what PHP has.

link|improve this answer
No. The cURL call is part of a program. If you could post the code that does the exact same thing being done in the curl call above, that would be great. – Gaurav Sharma Apr 19 '10 at 13:39
Added an example of what I meant by using subprocess based on your question, but I'm guessing you're looking for something more like PycURL. – unholysampler Apr 19 '10 at 13:58
feedback

Here's a simple example using urllib2 that does a basic authentication against GitHub's API.

import urllib2

u='username'
p='userpass'
url='https://api.github.com/users/username'

# simple wrapper function to encode the username & pass
def encodeUserData(user, password):
    return "Basic " + (user + ":" + password).encode("base64").rstrip()

# create the request object and set some headers
req = urllib2.Request(url)
req.add_header('Accept', 'application/json')
req.add_header("Content-type", "application/x-www-form-urlencoded")
req.add_header('Authorization', encodeUserData(u, p))
# make the request and print the results
res = urllib2.urlopen(req)
print res.read()

Furthermore if you wrap this in a script and run it from a terminal you can pipe the response string to 'mjson.tool' to enable pretty printing.

>> basicAuth.py | python -mjson.tool

One last thing to note, urllib2 only supports GET & POST requests.
If you need to use other HTTP verbs like DELETE, PUT, etc you'll probably want to take a look at PYCURL

link|improve this answer
Why was this voted down? – braitsch Nov 28 '11 at 6:39
feedback

Your Answer

 
or
required, but never shown

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