view service/environment/rdfdoc.py @ 1229:02e4b84821d5

talk to store graph, second button for holding unlocked, etc Ignore-this: c2ae7d756e743c26e5e01d99772899bd darcs-hash:a0750d0bbc4dc7c0f65f63f3e7342b35a175141b
author drewp <drewp@bigasterisk.com>
date Thu, 04 Apr 2019 02:16:22 -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))