wok diff beautifulsoup/description.txt @ rev 24373
Add some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 05 16:12:08 2022 +0000 (2022-02-05) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/beautifulsoup/description.txt Sat Feb 05 16:12:08 2022 +0000 1.3 @@ -0,0 +1,5 @@ 1.4 +The BeautifulSoup class turns arbitrarily bad HTML into a tree-like nested 1.5 +tag-soup list of Tag objects and text snippets. A Tag object corresponds to 1.6 +an HTML tag. It knows about the HTML tag's attributes, and contains a 1.7 +representation of everything contained between the original tag and its 1.8 +closing tag (if any). It's easy to extract Tags that meet certain criteria.