up vote 3 down vote favorite
share [g+] share [fb]

Let's say I wanted to make a python script interface with a site like Twitter.

What would I use to do that? I'm used to using curl/wget from bash, but Python seems to be much nicer to use. What's the equivalent?

(This isn't Python run from a webserver, but run locally via the command line)

link|improve this question

feedback

5 Answers

up vote 6 down vote accepted

For something like Twitter, you'll save yourself a ton of time by not reinventing the wheel. Try a library like python-twitter. This way, you can write your script, or even a full fledged application, that interfaces with Twitter, and you don't have to care about the implementation details.

If you want to roll your own interface library, you're going to have to get familiar with urllib and depending on what format they provide results, either lxml (or some other xml parser) or simplejson.

link|improve this answer
1  
+1 Simplejson is a vital component here. – Ali Afshar Nov 12 '08 at 22:05
1  
urllib, lxml and simplejson sound like the tools I need. Thanks! – Rich Bradshaw Nov 12 '08 at 22:53
@Rich: if you found this helpful, then you know what you must do... wink wink nudge nudge – Jeremy Cantrell Nov 13 '08 at 0:50
feedback

Python has urllib2, which is extensible library for opening URLs

Full-featured easy to use library.

http://www.python.org/doc/2.5.2/lib/module-urllib2.html

link|improve this answer
feedback

I wholeheartedly recommend mechanize for python. It's exactly a programmable web browser that you can use from python, which handles forms and cookies as well! It makes any kind of site crawling a breeze.

Take a look at the examples on that link to see what it can do.

link|improve this answer
Mechanize is ideal for situations where you DON'T have an API, but the OP specifies a site like Twitter, which has an API, so urllib2 is usually the way to go. – bouvard Nov 12 '08 at 20:44
ah, i didn't exactly get what you meant by "has an API" - but you mean it has an extensive way of interfacing with it just through URLs. in that case, yeah, urllib2 should be sufficient. – Claudiu Nov 12 '08 at 20:55
“It makes any kind of site crawling a breeze.” — except where the site is setting cookie values via JavaScript, and relying on them, as I’m finding to my chagrin. – Paul D. Waite Mar 11 '11 at 11:23
@Paul: ah true.. ive had that problem as well. i have wanted to make a mechanize that can parse and execute javascript as i haven't seen one that does, but no time yet. – Claudiu Mar 11 '11 at 18:54
sure. I’m currently attempting to use Selenium, which is a bit more heavyweight (and actually relies on having an actual browser installed on your system, which is fine locally but more of an issue if you’re trying to run it on a shared hosting server somewhere). – Paul D. Waite Mar 11 '11 at 19:04
feedback

Python has a very nice httplib module as well as a url module which together will probably accomplish most of what you need (at least with regards to wget functionality).

link|improve this answer
feedback

If you're used to dealing with cURL, consider PycURL.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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