Skip to content

Instantly share code, notes, and snippets.

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