semantics - RDF Data for online NEWS sites -


I want to get a list of major news sites in different languages. Is there a provider that provides major website details in the RDF format?

DBipedia has information from Wikipedia, and there is a SPARQL closing point, there are some relevant categories in Wikipedia, which That can help you find the type of information you are looking for. For example, we can select individual news sites and get 302 results:

  SELECT * WHERE {? NewsSite dcterms: subject category: News_websites}   

There is a bit more difficult to obtain other piece of information reliably, because some information is not available for any page For example, some of these pages have their news site DBProp: Web

  SELECT * WHERE {newsseite dcterms: subject category: news_websites record with. Alternative {? NewsSite dbpprop: web? Web}}   

use the other dbpprop: website . You can call dbpprop: web to dbpprop: web | With the dbpprop: website , you can switch to the previous query, however this dBipedia moves slowly to some extent at the closing point. You can be more vocal and use it instead:

  SELECT? NewsSite? Web WHERE {? NewsSite dcterms: Topics category: News-Websites Optional {{newsseite dbpprop: web? Web} UNION {? NewsSite dbpprop: Website? Web}}}   

This still receives websites for a handful This page is some more use dbpprop: url So we have the following:

  select? News site web? WHERE {? NewsSite dcterms: Topics category: News-Websites Optional {{? NewsSite dbpprop: web? Web} UNION {? NewsSite dbpprop: Website? Web} UNION {? NewsSite dbpprop: url? Web}}}   



Comments

Popular posts from this blog

excel vba - How to delete Solver(SOLVER.XLAM) code -

github - Teamcity & Git - PR merge builds - anyway to get HEAD commit hash? -

ios - Replace text in UITextView run slowly -