Takes all your bookmarks from del.icio.us, converts to RDF (using Tag Ontology), pushes into a Talis Platform store
Very alpha - please mail/twitter me any error messages and del.icio.us name
Worry not, your password isn't recorded
Takes a couple of minutes to transfer, but then the data should be available via this SPARQL interface:
http://api.talis.com/stores/danja-dev1/services/sparql
Sample Query - copy & paste
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX rss: <http://purl.org/rss/1.0/>
PREFIX tag: <http://www.holygoat.co.uk/owl/redwood/0.1/tags/>
PREFIX x: <http://purl.org/stuff/tag-ext#>
SELECT ?item ?title ?description ?tag WHERE {
?item rdf:type rss:item ;
dc:title ?title ;
tag:taggedWithTag ?tag .
?tag tag:tagName "semweb"
}
(note there's a load of data from elsewhere in the store, so unconstrained queries might throw back lots of junk)
there's also a search interface at:
http://api.talis.com/stores/danja-dev1/items