graingert commented on issue #35081:
URL: https://github.com/apache/arrow/issues/35081#issuecomment-1768445485
pandas raises a DeprecationWarning: Passing a BlockManager to DataFrame is
deprecated and will raise in a future version. Use public APIs instead for this
use now:
```python
import pyarrow.dataset
import fsspec
paths = [
"https://github.com/Parquet/parquet-compatibility/raw/master/parquet-testdata/impala/1.1.1-NONE/nation.impala.parquet"
]
(
pyarrow.dataset.dataset(paths, filesystem=fsspec.filesystem("http"))
.schema.empty_table()
.to_pandas()
)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]