-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
ENH: Add support for s3 in read_excel #11447 #11714
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
Conversation
tests pls |
pls add a test for this. you can post an |
pls add a whatsnew note as well (enhancements) |
Will do. What's the path to the s3 bucket? |
ok I uploaded those 2 files to the standard bucket |
Can you go ahead and add test1.xlsm to the s3 bucket as well? Looks like the existing excel tests use all three extensions and I want to use the same base class. |
ok, should be good to go. |
ok, PR updated with test case and whatsnew note. |
perfect. needs a rebase (prob a doc conflict), then ping when green. |
also can you extend the doc-string for |
Looks like the doc for |
Hmm, also looks like I broke the build. The unit test is failing when trying to import boto to handle the s3 url: Is there a config I need to update for the CI process to install boto? |
Ahh, I see I can just implement a |
yep - builds have different deps / versions of things to give code a workout |
aea7f7c
to
0b58d56
Compare
Good stuff! Ok, I think everything is good to go now. Thanks for walking me through my first contribution. |
ENH: Add support for s3 in read_excel #11447
@parsleyt thanks for the contribution! |
closes #11447
Updated excel.py to use pandas.io.common.get_filepath_or_buffer (handles s3 urls) instead of urlopen, only when _is_s3_url returns true. This was the minimally invasive change.