-
-
Notifications
You must be signed in to change notification settings - Fork 88
Can't get XLSX support working #68
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
Comments
please install latest pyexcel-xls, which has pinned on older version of xlrd. |
with 'library' parameter, it assumes that you explicitly know the file type so you can choose the pyexcel plugin. but I hope you will not force pyexcel-xlsx to read a csv file :) |
Thx! I did install it, but it didn't work. In the end, I deleted all the packages, cleaned the cache, installed them again, and now it's working like a charm. Thx for the response! |
Hello!
Since XLRD dropped XLSX support I've been unable to get support for this type of file working.
I have the following form:
I also have a form view that gives the error
XLRD Error: Excel xlsx file; not supported
when the following code is run in theform_valid
function:I've tried a variety of things so it doesn't use XLRD but nothing seems to work. I followed the documentation and installed
pyexcel-xls
andpyexcel-xlsx
. I also tried importingpyexcel.ext.xlsx
both on the view and the form file to no avail.Any surefire way to get XLSX support working again?
Thanks!
EDIT: I have found that the
library
kwarg lets me bypass XLRD and usepyexcel-xlsx
directly, but wouldn't this break support for csv, xls, and others?The text was updated successfully, but these errors were encountered: