I want to create new individuals through a user interface. I managed to add the individual to the ontology but I can't insert the values of the properties. Here is a part of the code:
ind=Class(ind)
for i in onto.data_properties():
if(i.domain.__contains__(Class)):
ind.i=[an input given by the user]
onto.save()
I can't where is the problem, Could you help please?