gpt4 book ai didi

Python 代码找不到 cython 函数,尽管它甚至不应该尝试找到它。为什么?

转载 作者:太空狗 更新时间:2023-10-29 15:38:38 24 4
gpt4 key购买 nike

底部有两个文件,一个是应该执行的 super 最小 python 文件,一个是 cython 文件。如果将它们保存为文件,将 cython 命名为“cycode.pyx”,一旦执行另一个文件(例如“start.py”),它将自动编译并运行

问题

如果您执行纯 python 文件/.start.py,您将从 Cython 获得一个属性错误。

Exception AttributeError: "'cycode.Item' object has no attribute 'export'" in 'cycode.insertItem'

根据我的经验,这意味着 Python 函数或对象会尝试访问未声明为 public(或 cpdef、readonly、def 等)的 cython 代码。但我从未打算从 Python 访问此函数。据我所知,这不应该发生。 cython 和 python 之间应该有一个清晰的分离。 Python 仅获取包含简单字典的列表。

问题是为什么会这样?我的目标不仅仅是让它工作,这可以通过一个简单的 cpdef 来完成。但要理解为什么会发生这种情况,并最终了解如何以一种干净且受控的方式将数据从 cython 发送到 python,而不必为 python 领域公开任何 cython 对象。

start.py

    #! /usr/bin/env python3
# -*- coding: utf-8 -*-
import pyximport; pyximport.install()
import cycode
#Register a callback function with the cython module.
#In this case just attempt to print the data.
cycode.callbacksDatabase.update.append(print)


#Call an insert function to create and insert a cython object.
#We should have nothing to do with this object,
#we just receive a simple list of dict(s) via the callback.
cycode.new1()

cycode.pyx

# cython: language_level=3
cdef class Block:
"""A container class for Items"""
cdef list content
cdef void insert(self, Item item)
cdef list export(self)

def __cinit__(self):
self.content = []

cdef void insert(self, Item item):
self.content.append(item)

cdef list export(self):
"""The frontend should just receive simple data types to
vizualize them. Create export dicts of all items"""
cdef list result
result = []
for item in self.content:
result.append(item.export()) #THIS is the problem. item.export() cannot be found.
return result

cdef class Item:
cdef int value
cdef dict export(self)
def __cinit__(self, int value):
self.value = value

cdef dict export(self):
return {
"id" : id(self),
"value" : self.value,
}

########API#############
class Callbacks():
def __init__(self):
self.update = []

def _update(self):
ex = block.export()
for func in self.update:
func(ex)

cdef void insertItem(int value):
cdef Item item
item = Item(value) #this should create a cython object, not a python one.
block.insert(item)
callbacksDatabase._update()

def new1():
insertItem(1)

#######Actual Data on module level#######
cdef Block block
block = Block() #this is just for the cython code. No direct access from python allowed.
callbacksDatabase = Callbacks() #this should be accesable from python

最佳答案

典型的 IRC 效果...一旦您详细解决了问题,几分钟后就会弹出解决方案(虽然这次是通过 Facebook 聊天...)。

我忘记了在 Python/Cython 中,for 循环不会自动创建一个新的作用域,而且循环变量也没什么特别的。它也需要声明为 cdef。

    cdef Item item
for item in self.content:
result.append(item.export())

关于Python 代码找不到 cython 函数,尽管它甚至不应该尝试找到它。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21149985/

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