-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
I think it would be reasonable to support this directly as an overload of readxl
/ readxlsheet
. Below is a example/workaround using xlrd directly.
using HTTP
using ExcelReaders
r = HTTP.get("url returning.xls")
wb = ExcelReaders.xlrd.open_workbook(; file_contents=r.body)
xf = ExcelReaders.ExcelFile(wb, "")
data = ExcelReaders.readxlsheet(xf, "Sheet1");
Metadata
Metadata
Assignees
Labels
No labels