divparser lands on PyPI
So divparser just shipped on PyPI. It's a straightforward library for pulling apart and working with HTML div elements without the overhead of heavier DOM parsing tools. If you've ever found yourself wrestling with nested divs or trying to extract structure from messy markup, you know why something like this matters — it fills a gap between regex hell and importing an entire HTTP client library just to parse some HTML.
The package handles the parsing side of things. You feed it HTML, tell it what you're looking for, and it gives you back the structure you need without making you write a parser from scratch. That's the whole philosophy here. No dependencies bloat, no magic, just a focused tool that does one thing and does it reasonably well.
It's already live if you want to grab it. The real question is whether it catches on with people who need exactly this kind of utility. Sometimes the best tools aren't the flashiest ones — they're just the ones that save you an afternoon of writing code you'd rather not write.