arrow icon indicating copy to clipboard operation
arrow copied to clipboard

If I can cimport the cython .pxd files from pyarrow directly

Open g302ge opened this issue 1 year ago • 0 comments

Recent days, I have develop a new dataset filesystem used in my company scope. But in the python environment my colleague use the dataset api and inject the filesystem which I have wrote. Hence I have to make a new python wrapper for the new filesystem. But I am a newbie of cython I don't know if I can cimport the .pxd files from the pyarrow I have installed (built with my filesystem)

example is that

# my/path/to/filesystem.pyx

# I don't know if this statement is valid ?
from pyarrow.includes.common cimport *  

g302ge avatar Oct 27 '22 03:10 g302ge