You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example: wr.s3.read_excel(file, sheet_name=0, engine="calamine")
Here I am using calamine as the engine to open an excel file. This is fully supported by pandas.
But, awswranger is throwing an error telling me that I have to install openpyxl, even tho I do not want to use it.
If I understand correctly, awswrangler is not using openpyxl but just delegating the call to pd.read_excel. If yes, why are you checking for this library? How can I know which engine is actually used?
If no, it would be better to let the user know that a different engine cannot be selected.
The text was updated successfully, but these errors were encountered:
Example:
wr.s3.read_excel(file, sheet_name=0, engine="calamine")
Here I am using
calamine
as the engine to open an excel file. This is fully supported by pandas.But,
awswranger
is throwing an error telling me that I have to installopenpyxl
, even tho I do not want to use it.If I understand correctly,
awswrangler
is not usingopenpyxl
but just delegating the call topd.read_excel
. If yes, why are you checking for this library? How can I know which engine is actually used?If no, it would be better to let the user know that a different engine cannot be selected.
The text was updated successfully, but these errors were encountered: