私はちょうどneo4djangoの独自の例を試していました。
from neo4django.db import models
class Person(models.NodeModel):
name = models.StringProperty()
age = models.IntegerProperty()
friends = models.Relationship('self',rel_type='friends_with')
ただし、実行python manage.py syncdb
すると次のエラーが発生します。
AttributeError: type object 'Model' has no attribute '__metaclass__'
何か案は?
(ここでは Stackoverflow でラベル「neo4django」を使用しますが、まだ新しいラベルを作成することはできません)。