我需要使用共享库 (.so) 处理从 C 程序到 python 实例 (Django) 的大量数据。是否可以通过 ctypes 返回它们?
例如:
import ctypes
a = ctypes.CDLL('foo.so')
b = a.collect()
latitude = b.latitude
longitude = b.longitude
和一个 C:
main()
{
/* steps to get the data */
return <kind of struct or smth else>;
}
我是新手,有没有办法提供这种数据?