Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Last active November 8, 2022 02:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gartenfeld/903cb14462ad6b269f63 to your computer and use it in GitHub Desktop.
Save gartenfeld/903cb14462ad6b269f63 to your computer and use it in GitHub Desktop.
BeautifulSoup with multiple criteria.
soup.find_all('div', {'class': ['first', 'second']})
soup.find_all(lambda tag: tag.name=="div" and
tag.get("id")=="examples_box" and
tag.get("class") == "term-subsec")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment