Mercurial > code > home > repos > environment
view rdfdoc.py @ 9:145779f2d79d
wedge in an allow-origin response for tests that aren't serving on our domain
author | drewp@bigasterisk.com |
---|---|
date | Sun, 07 May 2023 16:00:19 -0700 |
parents | 3c1bc3bc5a6c |
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))