lidavidm commented on issue #53:
URL: https://github.com/apache/arrow-adbc/issues/53#issuecomment-1227477183

   This isn't about actually implementing a driver in Python - only about 
packing up a driver written in C/C++ as a Python package in such a way that it 
can be easily installed and used. The driver manager can initialize a 
connection from a `struct AdbcDriver*`, so we just need some coordination in 
Python.
   
   Or do you mean, we skip the entrypoint and just have people do something 
like this:
   
   ```python
   import adbc_driver_postgres
   import adbc_driver_manager
   
   conn = adbc_driver_manager.connect(adbc_driver_postgres, ...)
   ```
   
   in which case, I think that's reasonable too.


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