Last active
May 20, 2021 18:13
-
-
Save max-torch/96b415b1986110ea9abe99465329c8e9 to your computer and use it in GitHub Desktop.
Beautiful Soup load file
This file contains 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 | |
soup = BeautifulSoup(open("your_file.html", encoding = 'utf8'), "html.parser") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment