Skip to content

Instantly share code, notes, and snippets.

@sdiehl
Created August 29, 2010 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sdiehl/556330 to your computer and use it in GitHub Desktop.
Save sdiehl/556330 to your computer and use it in GitHub Desktop.
# Stephen Diehl ( sdiehl@clarku.edu )
# Build up an OWL ontology recursively from the Python given Python objects inheritance tree.
from xml.dom import minidom
def generate(icls):
xml = minidom.Document()
rdf = xml.createElement('rdf:RDF')
rdf.setAttribute('xmlns:owl','http://www.w3.org/2002/07/owl#')
rdf.setAttribute('xmlns:rdf','http://www.w3.org/1999/02/22-rdf-syntax-ns#')
rdf.setAttribute('xmlns:rdfs','http://www.w3.org/2000/01/rdf-schema#')
ontology = xml.createElement('rdf:Ontology')
ontology.setAttribute('rdf:about','')
def createClass(cls):
xcls = xml.createElement("owl:Class")
xcls.setAttribute('rdf:about','#' + cls.__name__)
for subclass in cls.__bases__:
xcls.appendChild(createSubClass(subclass))
return xcls
def createSubClass(cls):
xcls = xml.createElement("rdfs:subClassOf")
xcls.setAttribute('rdf:resource','#' + cls.__name__)
return xcls
rdf.appendChild(ontology)
def descend(cl):
for cls in cl.__subclasses__():
rdf.appendChild(createClass(cls))
descend(cls)
descend(icls)
xml.appendChild(rdf)
print xml.toprettyxml()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment