view service/environment/rdfdoc.py @ 1279:b4004739640e

fix hang-at-startup bug Ignore-this: 1ad778b512970dd9a582e7f66b93ddcd darcs-hash:20263d454f1d1b80ebe506f0cbe85f0d16ebd6aa
author drewp <drewp@bigasterisk.com>
date Sat, 20 Apr 2019 23:54:11 -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))