Read DuckDB File(s) over HTTP
Usage
tbl_http(
urls,
...,
conn = duckdb_connection(extensions = "httpfs"),
read_func = c("read_parquet", "read_csv")
)Arguments
- urls
1 or more URLs
- ...
Named options forwarded to the DuckDB reader function, e.g. `union_by_name = TRUE` becomes `union_by_name=true`. Logicals map to `true`/`false`, character values are single-quoted.
- conn
A DuckDB connection
- read_func
The DuckDB SQL function to call against the list of urls. One of `"read_parquet"` (default) or `"read_csv"`.
