Created
August 25, 2021 11:07
-
-
Save russelllim22/fb2f6020d9c864d60d567e900aba3f99 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 | |
with open("math-topic-page.html", encoding='utf-8') as f: | |
contents = f.read() | |
soup = BeautifulSoup(contents, 'lxml') | |
for sect in soup.find_all('section'): | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment