paleolimbot commented on issue #466:
URL: 
https://github.com/apache/arrow-nanoarrow/issues/466#issuecomment-2110162163

   Good point! Maybe include the output of `schema.fields` by default (perhaps 
truncated to a reasonable number of lines?)
   
   ```python
   import nanoarrow as na
   
   url = 
"https://github.com/apache/arrow-experiments/raw/main/data/arrow-commits/arrow-commits.arrows";
   schema = na.ArrayStream.from_url(url).schema
   
   schema.fields
   #> [<Schema> 'commit': string,
   #>  <Schema> 'time': timestamp('us', 'UTC'),
   #>  <Schema> 'files': int32,
   #>  <Schema> 'merge': bool,
   #>  <Schema> 'message': string]
   ```


-- 
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]

Reply via email to