Skip to content

Instantly share code, notes, and snippets.

@WillKoehrsen
Created December 31, 2018 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WillKoehrsen/b526d41c20a29d95d0a0e8b9c7a76e1d to your computer and use it in GitHub Desktop.
Save WillKoehrsen/b526d41c20a29d95d0a0e8b9c7a76e1d to your computer and use it in GitHub Desktop.
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