Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Last active February 11, 2020 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BMU-Verlag/d1a17806cef1f392da6d3aa5679afd41 to your computer and use it in GitHub Desktop.
Save BMU-Verlag/d1a17806cef1f392da6d3aa5679afd41 to your computer and use it in GitHub Desktop.
def parse_html(response_content):
raw_html = BeautifulSoup(response_content, 'html.parser')
relevant_lines = get_relevant_lines(raw_html)
for line in relevant_lines:
print_line_if_died_under_60(line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment