view service/environment/rdfdoc.py @ 1405:882159ac1301

support for default values for http PUT outputs Ignore-this: 675022649e1c1014116f685a03e5d9f6 darcs-hash:89e09e40e2e58ed8db364fee1db5aea7e6f56e0f
author drewp <drewp@bigasterisk.com>
date Tue, 23 Jul 2019 10:28:12 -0700
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))