Hi,
I just installed djubby using pip install djubby. I found out that there are some inconsistencies that need to be fixed in order to make it work:
1. resource.tpl is missing. In order to fix this, download it from [1]. Find the folder where pip installed djubby and create a new folder called "tpl". Then copy the resource.tpl file within the tpl folder. Go to the resource.py file and modify the line 159 to look like this one (I just modified the path): path = "%s/tpl/%s.tpl" % (os.path.dirname(__file__), name)
2. Problems with the line from rdflib.Graph import ConjunctiveGraph. In order to fix that you need to edit file configuration.py. Replace the previous line by this one: from rdflib import ConjunctiveGraph
With these little changes djubby will be working again. I just tested it with django 2.7.
Cheers,
Antonio