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
returns a list of two data frames where the first one is equivalent to read_html() without the parse_dates arg and the second one is the one expected to be returned by calling read_html() with parse_dates arg.
Am I missing something?
The text was updated successfully, but these errors were encountered:
If you're using Google Chrome then you can right click anywhere on the page and click "View page source". This will show you that the page contains two tables with the class attribute value that you've shown, so two tables will be returned. They are different tables, which you can see by looking at their respective cells.
Thanks for the clout behind the ears. I had wrong assumptions that did hold for other dates / other HTML markup on the site. For now using manual xpath via lxml.
Forgive the markup indentation.
returns a list of two data frames where the first one is equivalent to
read_html()
without theparse_dates
arg and the second one is the one expected to be returned by callingread_html()
withparse_dates
arg.Am I missing something?
The text was updated successfully, but these errors were encountered: