Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the meaning of 'soup' in jsoup and Beautiful Soup?

What's the meaning of "soup" in jsoup and Beautiful Soup, and why it is called "soup"?

like image 365
Yishu Fang Avatar asked May 19 '14 02:05

Yishu Fang


Video Answer


2 Answers

It's BeautifulSoup, and is named after so-called 'tag soup', which refers to "syntactically or structurally incorrect HTML written for a web page", from the Wikipedia definition.

jsoup is the Java version of Beautiful Soup.

like image 196
Leigh Avatar answered Oct 03 '22 13:10

Leigh


According to wiki "Beautiful Soup is a Python library for parsing HTML documents (including having malformed markup, i.e. non-closed tags, so named after Tag soup)."

Those were named after Tag soup

Reference : http://en.wikipedia.org/wiki/Beautiful_Soup

like image 36
Grainier Avatar answered Oct 03 '22 13:10

Grainier