Mercurial > code > home > repos > homeauto
view service/environment/rdfdoc.py @ 696:c52b172c0824
add publish to ON/OFF messages. split up the main statement handler
Ignore-this: b1ec515e6873a6841b1c31c3fb7a2a36
author | drewp@bigasterisk.com |
---|---|
date | Fri, 31 Jan 2020 23:55:27 -0800 |
parents | 2200d6530a5d |
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))