ianmcook commented on issue #33956:
URL: https://github.com/apache/arrow/issues/33956#issuecomment-1410823831
>The user needs to find/create a Parquet file to run it
To solve this, maybe we could just add a comment saying something like this:
To create a Parquet file `example.parquet` to use with this example, run
this Python code:
```py
import pyarrow as pa
import pyarrow.parquet as pq
pq.write_table(pa.Table.from_pydict({'i': [1,2,3,4], 'b':
[True,False,True,False]}), 'example.parquet')
```
--
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]