Hi!

I would like to implement the C Data Interface for Julia but I'm getting a
bit stuck.

My goal is to implement the py_to_jl function for any Arrow Table, but I'm
at a loss for where I can access the C Data Interface from an Arrow table
in Python..

For example, I would run this in python

import pyarrow.parquet as pq
data = pq.read_table("path/to/file.snappy.parquet")

And from this point I would like to access the variable "data" through the
C Data Interface but I can't find anything on the official docs.

The Julia code looks very similar to reach this point:

using PyCall
pq = pyimport("pyarrow.parquet")
data = pq.read_table("path/to/file.snappy.parquet")

Any guidance would be much appreciated!

Cheers

Reply via email to