vibhatha commented on code in PR #327: URL: https://github.com/apache/arrow-cookbook/pull/327#discussion_r1332793635
########## java/source/python_java.rst: ########## @@ -0,0 +1,261 @@ +.. _arrow-python-java: + +======================== +PyArrow Java Integration +======================== + +The PyArrow library offers a powerful API for Python that can be integrated with Java applications. +This document provides a guide on how to enable seamless data exchange between Python and Java components using PyArrow. + +.. contents:: + +Dictionary Data Roundtrip +========================= + + This section demonstrates a data roundtrip, where a dictionary array is created in Python, accessed and updated in Java, + and finally re-accessed and validated in Python for data consistency. Review Comment: I changed the wording. ```txt This section demonstrates a data roundtrip where C Data interface is being used to provide the seamless access to data across language boundaries. ``` -- 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]
