This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from lxml import etree | |
# This string will contain the models.py file | |
modelsContents = "from neo4django.db import models\n\n" | |
# Enter the name of the OWL file to parse | |
# The relationships in the file should always start with has... | |
owlFile = "ontology.owl" | |
# Gives the ontology URI. Only needed for documentation purposes |