Created
December 31, 2018 19:42
-
-
Save WillKoehrsen/b526d41c20a29d95d0a0e8b9c7a76e1d 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
from bs4 import BeautifulSoup | |
# Create a soup and find the table | |
soup = BeautifulSoup(open(f'stats.html', 'r')) | |
table = soup.find_all(attrs={'class': "sortableTable-row js-statsTableRow"}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment