|
How can I get all columns accost from "list of country's by" for example? I dont want the results but I want all the information accost from the country column for each result page. like using dbpedia or something. |
|
I'm not entirely sure I understand your question. Do you want to be able to get the table headings from a page like - http://en.wikipedia.org/wiki/List_of_countries_by_population? eg. rank, country, population, date? But not specifically the population of China etc. I don't think that dbpedia specifically extracts data from tables yet (and if they did, I wouldn't imagine that they'd model it as a table). You could scrape the pages yourself. Alternatively you could query dbpedia for the properties that it has about the topic of interest eg. Countries SELECT DISTINCT ?label ?property WHERE {?country a http://dbpedia.org/ontology/Country. ?country ?property ?value. ?property rdfs:label ?label} |

