Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Openpyxl engine for reading excel files #25092
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
Openpyxl engine for reading excel files #25092
Changes from all commits
e29b4c0
e0199a8
ce4eb01
b25877e
821fa4d
4694668
712f1ef
1d49a0e
1473c0e
6e8ffba
d57dfc1
e984f6b
44f7af2
98d3865
d0188ba
205d52b
7b550bf
875de8d
12ad6d8
dfd6a36
fef7233
eaafd5f
8d2db02
13e7793
b053cce
fe4dd73
64e5f2d
99b2cad
ce5ac05
c7895ea
2ca9368
5fb1aef
537dd0c
44cddc5
e4c8f23
daff364
1224918
1bfc030
747311e
a77a4c7
ddcaad8
757235d
cdd627f
0b58109
45f21f8
e97d029
1edae5e
a69e104
f5f40e4
22e24bb
903b188
1b3ae99
02e19a8
3e18f97
d11956c
61d7a3f
13d41b2
97c85f5
614d972
d87d9c0
7348b0c
c1a1792
d72ca5a
0bba345
8dd8bf6
eaaa680
6bf5183
a06bf9b
f43e90f
8fabe0a
0ff5ce3
fb73692
17b1d73
3d248ed
c369fd8
70b15a4
a3a3bca
fcd43f0
d9c1fa6
3c239a4
4a25a5a
6258e59
00f34b1
a1fba90
88ee325
837ce26
dddc8c5
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW, you almost certainly want
keep_links=False
in there as well. On files that include data from other workbooks, Excel creates caches of the relevant worksheets and openpyxl preserves them by default. These can be pretty big and are read into memory and almost certainly irrelevant for Pandas.from_excel(). For an example see openpyxl bug #494.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good suggestion
for the record: