Last active
October 18, 2020 19:10
-
-
Save thepycoach/ddc2d1e2b03536ba2975bb45ff9b7e91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for match in single_row_events: | |
| # teams | |
| for team in match.find_elements_by_class_name('EventTeams-styles-titles'): | |
| teams.append(team.text) | |
| # scores | |
| for score in match.find_elements_by_class_name('EventScores-styles-scores'): | |
| scores.append(score.text) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment