We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
use_columns
See here
Suppose we have an excel file that looks like this:
then run
from fastexcel import read_excel read_excel(file_path).load_sheet(0, use_columns=["apple","banana"])
it raises with:
CalamineCellError: calamine cell error: #DIV/0! Context: 0: could not determine dtype for column blah
It should just ignore that column since it isn't in the use_columns list.
The work around is to tell it to make the other column a string
read_excel(file_path).load_sheet(0, use_columns=["apple","banana"], dtypes={"blah":"string"})
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See here
Suppose we have an excel file that looks like this:
then run
it raises with:
It should just ignore that column since it isn't in the
use_columns
list.The work around is to tell it to make the other column a string
The text was updated successfully, but these errors were encountered: