Last active
April 1, 2025 00:09
-
-
Save ggorlen/35e3f829ded6d826626762da50b7a003 to your computer and use it in GitHub Desktop.
Test gist with a requirements.txt
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 | |
soup = BeautifulSoup("<p>hello</p><p>World</p>") | |
print("\n".join([x.text for x in soup.select("p")])) |
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
beautifulsoup4==4.11.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment