David Manzanares
Results
11
issues of
David Manzanares
Hi, I think I've found a memory leak. This example reproduces it: ```python import requests import nh3 html = requests.get("https://search.brave.com/").text for _ in range(30_000): nh3.clean(html) ``` If you run that...