""" Example of the remover method """ from scrapegraphai.utils.remover import remover HTML_CONTENT = """ Test Page

This is a Test

Hello, World!

""" parsed_content = remover(HTML_CONTENT) print(parsed_content)