You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(df_to_polars(df_duckdb)) # You can only execute this line of code once.
63
63
```
64
64
65
-
It works to pass Polars to `native_namespace` here because Polars supports the [PyCapsule Interface](https://arrow.apache.org/docs/format/CDataInterface/PyCapsuleInterface.html) for import.
65
+
It works to pass Polars to `backend` here because Polars supports the [PyCapsule Interface](https://arrow.apache.org/docs/format/CDataInterface/PyCapsuleInterface.html) for import.
66
66
67
67
Note that the PyCapsule Interface makes no guarantee that you can call it repeatedly, so the approach above only works if you
68
68
only expect to perform the conversion a single time on each input object.
0 commit comments