-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add python bindings for the v2 reader/writer #2158
Conversation
137c004
to
e83702e
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2158 +/- ##
==========================================
- Coverage 81.04% 80.99% -0.06%
==========================================
Files 181 181
Lines 51279 51385 +106
Branches 51279 51385 +106
==========================================
+ Hits 41560 41620 +60
- Misses 7282 7344 +62
+ Partials 2437 2421 -16
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
python/python/lance/file.py
Outdated
@@ -0,0 +1,188 @@ | |||
# Copyright (c) 2023. Lance Developers |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2024 :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#2177 😆
|
||
class LanceFileReader: | ||
""" | ||
A file reader for reading Lance files |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this interface mostly internal utility? The public main interface is still pyarrow.Dataset
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. This is mainly for benchmarking / advanced use cases.
b27f6af
to
0ef20f1
Compare
Prerequisites: - [x] #1965
Prerequisites: