"Can BeautifulSoup process JSONL, or do I need another tool for that?"
Hey folks, quick question—can BeautifulSoup process JSONL files? I’ve been using it for HTML/XML scraping forever, but now I’ve got this JSONL dump to parse.
From what I’ve seen, BS is *kinda* HTML/XML-focused, right? Like, it’s not really built for JSON/JSONL. Or am I missing something?
If not, what’s the move? Just use `json` module in Python? Or is there a slicker tool for JSONL specifically?
(Also, if anyone’s got a hot take on why BS *should* handle JSONL, I’m all ears lol.)
Thanks in advance!
Hey folks, quick question—can BeautifulSoup process JSONL files? I’ve been using it for HTML/XML scraping forever, but now I’ve got this JSONL dump to parse.
From what I’ve seen, BS is *kinda* HTML/XML-focused, right? Like, it’s not really built for JSON/JSONL. Or am I missing something?
If not, what’s the move? Just use `json` module in Python? Or is there a slicker tool for JSONL specifically?
(Also, if anyone’s got a hot take on why BS *should* handle JSONL, I’m all ears lol.)
Thanks in advance!
