Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to grab a list of all titles from the site Reddit.com using lxml. I used this query:

  reddit = etree.HTML( urllib.urlopen("http://www.reddit.com/r/all/top").read() )
  reddit.xpath("//div[contains(@class,'title')]//b/text()")

However, when I run the expression nothing comes up in the Python shell. Is the XPath incorrect?

Running with Python 2.7

Here's the full code:

import urllib
import os, random, sys, math
from lxml import etree

def main():

    reddit = etree.HTML( urllib.urlopen("http://www.reddit.com/r/all/top").read() )
    reddit.xpath("//div[contains(@class,'title')]//b/text()")



if __name__ == "__main__":
    main()
share|improve this question
Doesn't look like a python problem, more like a networking, DNS or firewall issue. – miku Jan 16 '11 at 0:40
You were correct, I've since fixed the internet problem and have a new one. – Parseltongue Jan 16 '11 at 0:44
What are you expecting to come up? – Falmarri Jan 16 '11 at 1:17

2 Answers

up vote 6 down vote accepted

Reddit has API. You don't need to scrape it. Just add '.json' at the end of the url:

#!/usr/bin/env python
import json
import urllib2

url = "http://www.reddit.com/r/all/top/.json"
data = json.load(urllib2.urlopen(url))
for child in data['data']['children']:
    print child['data']['title']

Example Output

It's shit like this, reddit.
My autistic kid wanted some comment about his lion
How I got revenge on my cheating girlfriend [Based on a True Story]
no one is going to mess my with my laptop in the airport... no...
she's not there
Remember that unofficial Mortal Kombat film trailer 
with real Hollywood actors who helped out? 
(Michael Jai White, Jeri Ryan, Matt Mullins, etc) It's 
been greenlit to become an official mini-series.
Happy B-Day to me, 2 years clean and sober.
Mike Hunt strikes again!
FREE CAKE
real eyes
How to lose a job at Iowa State University. Just point out that cows naturally eat grass and not corn.
I'm sorry, I still can't get over the fact that the proposed health care repeal is ACTUALLY named "Repealing The Job-Killing Health Care Law Act." It's as if a bunch of three year olds named it.
This is why it gets cold in my bedroom at night.
Reddit, am I your tallest user?
Pharmacist Denies Anti-Bleeding Medication Because Woman Might Have Had an Abortion
Seems like I found a real pirate!
Reddit, a simple lifehack to save a family possibly hundreds a year on soap products.
China turns out First Solar Powered Air Conditioner capable of sending excess power back into the Grid ..50,000 models to head to US markets
“The Founding Fathers would have hated your guts…they were everything you despise. They studied science, read Plato, hung out in Paris, and thought the Bible was mostly bullshit.” - Maher on the Tea Party
Forget tropical beaches, this is what I'm doing for vacation [PIC]
How to teach kids science! [SMBC]
Lopsided coin {pic}
This is how I feel when my friends ask "how I know all this shit"
Fish helmet (pic)
Subtle
share|improve this answer
Awesome! Thanks – Parseltongue Jan 16 '11 at 3:57

You were not connected to the internet. Try again.

AND/OR

Your Python installation is either trashed or you have mixed together two stacktraces ... note how the paths suddenly change from 3.1 to 2.7 !!!!!!!

Update

Nothing appears in the shell because you don't print anything.

At least if instead of reddit.xpath("blahblah") you do:

result = reddit.xpath("blahblah")
print result

you will see that your current version of "blahblah" produces [] and be in a good shape to notice if fiddling with "blahblah" improves the situation.

share|improve this answer
I connected to the internet, and now nothing is appearing when I run the program. Perhaps an incorrect Xpath? – Parseltongue Jan 16 '11 at 0:44
@Parseltongue: after that very dodgy traceback, I'd suggest that you carefully copy and paste the WHOLE story: what version of Python and exactly ALL of the code that you ran. – John Machin Jan 16 '11 at 0:50
I've edited the post to include what you've asked for. – Parseltongue Jan 16 '11 at 1:13
Yeah, when I printed it did produce the "[]." What does that mean? How do I get it to extract the text of titles on the site? – Parseltongue Jan 16 '11 at 3:56
1  
@Parseltonge: [] is an empty list. It means that xpath found nothing to match your path. You need to fix your xpath path. xpath is not my bag. – John Machin Jan 16 '11 at 6:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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