All Versions
9
Latest Version
Avg Release Cycle
46 days
Latest Release
1656 days ago
Changelog History
Changelog History
-
v1.1 Changes
October 09, 20201.1 (2020-10-09)
- ๐ Feature: now PEP 561 compliant
- ๐ Feature:
Soup
now automatically formats and indents (pretty print) HTML where possible
-
v1.0 Changes
September 24, 2020๐ Changelog
1.0 (2020-09-24)
- Feature: gazpacho is now fully baked with type hints (thanks for the suggestion @ju-sh!)
- ๐ Feature:
Soup.get("url")
alternative initializer - Fixed:
.find
is now able to capture malformed void tags (<img />
, vs.<img>
) (thanks for the Issue @mallegrini!) - ๐ Renamed:
.find(..., strict=)
is nowfind(..., partial=)
- ๐ Renamed:
.remove_tags
is now.strip
-
v0.9.4 Changes
July 07, 20200.9.4 (2020-07-07)
- ๐ Feature: automagical json-to-dictionary return behaviour for
get
- ๐ Improvement: automatic missing URL protocol inference for
get
- ๐ Improvement: condensed HTTPError Exceptions
- ๐ Feature: automagical json-to-dictionary return behaviour for
-
v0.9.3 Changes
April 29, 20200.9.3 (2020-04-29)
- โก๏ธ Updated the README (thanks for flagging the
lxml
error, @koaning!)
- โก๏ธ Updated the README (thanks for flagging the
-
v0.9.2 Changes
April 21, 2020- Fixed
find(..., mode='first')
to returnNone
and not anIndexError
(thanks, @psyonara!)
- Fixed
-
v0.9.1 Changes
February 16, 2020- Fixed
UnicodeEncodeError
lurking beneathget
(thanks for the "Issue" @mlehotay!) - ๐ Fixed
find
method to properly handle non-closing HTML tags
- Fixed
-
v0.9 Changes
November 25, 2019Changelog
- โ Added the
remove_tags
method for isolating formatted text in a block of HTML
- โ Added the
-
v0.8.1 Changes
October 10, 2019๐ Changelog
- ๐ Fixed empty element tag counting within the
find
method
- ๐ Fixed empty element tag counting within the
-
v0.8 Changes
October 07, 2019๐ Changelog
- โ Add mode argument to the
find
method to adjust return behaviour (defaults tomode='auto'
) - 0๏ธโฃ Enable strict attribute matching for the
find
method (defaults tostrict=False
)
- โ Add mode argument to the