view service/environment/rdfdoc.py @ 1028:70d52fa8373a

add new jsonld/SSE support to environment service as a test Ignore-this: ae671e71966dbbb9d1f97e3596802d3d darcs-hash:f724b9da306be00428ef84967f34dfe07a62a4c6
author drewp <drewp@bigasterisk.com>
date Sun, 24 Jan 2016 07:12:25 -0800
parents 98311a863d7e
children
line wrap: on
line source

# to be shared somewhere
import json, cyclone.web
from cycloneerr import PrettyErrorHandler
from rdflib import Graph, RDFS, URIRef

graph = Graph()
graph.parse("docs.n3", format="n3")

# maybe the web page could just query sesame over http and we drop this server
class Doc(PrettyErrorHandler, cyclone.web.RequestHandler):
    def get(self):
        uri = URIRef(self.get_argument('uri'))

        ret = {}
        comment = graph.value(uri, RDFS.comment)
        if comment is not None:
            ret['comment'] = comment
        
        self.set_header("Content-type", "application/json")
        self.write(json.dumps(ret))