Triplr: Stuff in, triples out

RDF format transformations

http://triplr.org/output/source-uri

output-format is one of html, json, ntriples, rdf or turtle.
source-uri is like example.org/foo/bar

  # Ntriples from RSS
  http://triplr.org/ntriples/librdf.org/NEWS.rdf
  # Turtle from RSS
  http://triplr.org/turtle/cultofmac.com.feedsportal.com/c/33797/f/606249/index.rss
  # Turtle from HTML via GRDDL
  http://triplr.org/turtle/www.kanzaki.com/works/
  # RDF/JSON about the Golden Gate Bridge
  http://triplr.org/json/sws.geonames.org/5352844/about.rdf
  # as above but triple dump
  http://triplr.org/json;triples/sws.geonames.org/5352844/about.rdf
  # You figure it out
  http://triplr.org/grddl-turtle/triplr.org/when

RDF query execution and result formatting

http://triplr.org/query : SPARQL query endpoint and query builder
http://triplr.org/querylanguage-resultformat/querystring

querystring is the RDF query string. querylanguage is the language: sparql or rdql.
resultformat is xml, json, csv, tsv, table for bindings results or one of the output-format above for graph results.

  # Get nicks and names of some of my FOAF friends in JSON
  http://triplr.org/sparql-json/PREFIX%20foaf%3A%20%3Chttp%3A%2F%2Fxmlns.com%2Ffoaf%2F0.1%2F%3E%0A%0ASELECT%20%3Fnick%2C%20%3Fname%0AFROM%20%3Chttp%3A%2F%2Fwww.dajobe.org%2Ffoaf.rdf%3E%0AWHERE%20%7B%0A%20%20%20%3Fx%20a%20foaf%3APerson%20.%0A%20%20%20%3Fx%20foaf%3Anick%20%3Fnick%20.%0A%20%20%20%3Fx%20foaf%3Aname%20%3Fname%0A%7D%0A

what, why, when, how, todo