-
Notifications
You must be signed in to change notification settings - Fork 0
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
[feature request] read parquet from URL (or from raw vector?) #71
Comments
Yes, we could definitely do one or both of those. The challenge for the HTTP is to keep the package lean, but reading from a raw vector is pretty straightforward. Btw. we could also support reading from an R connection, then you could do read_parquet(url("https://....")) |
either of these would be great! |
Reading from a connection would be great as that's how we read rds files from url! |
To clarify, for a Parquet file, reading from a connection means that we would need to read the whole file first, save it to a temporary file, and then read it from there. Which you can also do relatively easily as a workaround. |
Dev version can read from a connection now. |
Hi! Excited by the looks of this package. A frequent use case I have is reading a parquet from a URL, e.g.
Is this something that would be in-scope for nanoparquet?
The text was updated successfully, but these errors were encountered: