gpt4 book ai didi

python - Py2neo (V4) - 属性错误 : 'Graph' object has no attribute 'find_one'

转载 作者:行者123 更新时间:2023-12-01 01:39:21 24 4
gpt4 key购买 nike

我正在尝试将 neo4j-flask 应用程序更新到 Py2Neo V4,但我找不到如何替换“find_one”函数。 (Nicole White 使用 Py2Neo V2)

我的设置:

  • Ubuntu 18.04
  • Python 3.6.5
  • Neo4j 服务器版本:3.4.6(社区)

Requirements.txt(其余代码来自 Nicole White 的 github 存储库):

atomicwrites==1.2.0
attrs==18.1.0
backcall==0.1.0
bcrypt==3.1.4
certifi==2018.8.24
cffi==1.11.5
click==6.7
colorama==0.3.9
decorator==4.3.0
Flask==1.0.2
ipykernel==4.8.2
ipython==6.5.0
ipython-genutils==0.2.0
itsdangerous==0.24
jedi==0.12.1
Jinja2==2.10
jupyter-client==5.2.3
jupyter-console==5.2.0
jupyter-core==4.4.0
MarkupSafe==1.0
more-itertools==4.3.0
neo4j-driver==1.6.1
neotime==1.0.0
parso==0.3.1
passlib==1.7.1
pexpect==4.6.0
pickleshare==0.7.4
pkg-resources==0.0.0
pluggy==0.7.1
prompt-toolkit==1.0.15
ptyprocess==0.6.0
py==1.6.0
py2neo==4.1.0
pycparser==2.18
Pygments==2.2.0
pytest==3.7.3
python-dateutil==2.7.3
pytz==2018.5
pyzmq==17.1.2
simplegeneric==0.8.1
six==1.11.0
tornado==5.1
traitlets==4.3.2
urllib3==1.22
wcwidth==0.1.7
Werkzeug==0.14.1

注册用户时收到错误:

AttributeError: 'Graph' object has no attribute 'find_one'

"The User.find() method uses py2neo’s Graph.find_one() method to find a node in the database with label :User and the given username, returning a py2neo.Node object. "

在 Py2Neo V3 中,函数 find_one -> https://py2neo.org/v3/database.html?highlight=find#py2neo.database.Graph.find_one可用。

在 Py2Neo V4 中 https://py2neo.org/v4/matching.html不再有查找功能。

有人知道如何在 V4 中解决这个问题,还是要在这里降级?

最佳答案

py2neo v4 有一个 first 函数,可以与 NodeMatcher 一起使用。请参阅:https://py2neo.org/v4/matching.html#py2neo.matching.NodeMatch.first

也就是说...v4 引入了 GraphObjects(至少到目前为止)我发现它非常简洁。

在链接的 github 示例中,用户是通过以下方式创建的:

user = Node('User', username=self.username, password=bcrypt.encrypt(password))
graph.create(user)

并发现

user = graph.find_one('User', 'username', self.username)

在 py2neo v4 中我会这样做

class User(GraphObject):
__primarykey__ = "username"

username = Property()
password = Property()

lukas = User()
lukas.username = "lukasott"
lukas.password = bcrypt.encrypt('somepassword')
graph.push(lukas)

user = User.match(graph, "lukasott").first()

据我了解,first 函数提供了与 find_one 相同的保证,如 v3 文档中引用的“如果有多个匹配节点,则不会失败”被发现了。”

关于python - Py2neo (V4) - 属性错误 : 'Graph' object has no attribute 'find_one' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52056004/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com