Heres a quick SPARQL snippet to get a list of the worlds Newspapers along with their political stance. It is only a quick one, with a bit more work its possible to get the English titles of the Newspapers and the Political stances.
SELECT ?Newspaper ?Stance WHERE { ?Newspaper rdf:type dbpedia-owl:Newspaper; <https://dbpedia.org/property/political> ?Stance}
Plug that into the DBPedia SPARQL interface: https://dbpedia.org/sparql
and get out the result for newspapers and their political perspective.
Tada! Quick bit of Semantic Web goodness!
Cheers,
Daniel
[update]fixed evil wordpress formatting on part of my sparql query[/update]