我在将 Django 与 Orientdb PyOrient OGM 连接时遇到了困难。
我在 Django 的 settings.py 文件中设置了以下连接字符串和初始化方法。
# PYORIENT DB SETTINGS
DJANGORIENT_SETTINGS = {
'host': 'localhost',
'port': '2480',
'username': 'xxxx',
'password': 'xxxxxxxxxx',
'name': 'authdb'
}
from pyorient.ogm import declarative
Node = declarative.declarative_node()
Relationship = declarative.declarative_relationship()
但我无法通过我的 models.py 文件连接到数据库
from pyorient.ogm.property import *
from .settings import Node
class Car(Node):
registration = String(unique=True)
colour = String()
关于如何连接这两种技术的任何建议?