hadim commented on issue #40539:
URL: https://github.com/apache/arrow/issues/40539#issuecomment-2675509568
Current working but not ideal (verbose) workaround is:
```python
import io
import fsspec
import pandas as pd
with fsspec.open(proteome_path, mode="rb") as f:
buffer = io.BytesIO(f.read())
data = pd.read_parquet(buffer)
```
--
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]