summaryrefslogtreecommitdiff
path: root/bs4/__init__.py
AgeCommit message (Expand)Author
2023-04-07Fixed an unhandled exception in BeautifulSoup.decode_contentsLeonard Richardson
2023-03-27Make it possible to pickle a deeply nested BeautifulSoup object.Leonard Richardson
2023-03-26Implement a proper BeautifulSoup.deepcopy rather than parsing the document ag...Leonard Richardson
2023-03-23Found and removed accidental calls to find(), greatly improving performance.Leonard Richardson
2023-03-23Bump version number preemptively.Leonard Richardson
2023-03-20Increased version number in __version__.Leonard Richardson
2023-02-03Move the Soup Sieve proxy and its tests into separate files.Leonard Richardson
2023-01-28Incremented version number.Leonard Richardson
2023-01-27Change the tests that check warnings to also (indirectly) verify that the sta...Leonard Richardson
2023-01-27Warnings now do their best to provide an appropriate stacklevel,Leonard Richardson
2022-04-08Some cleanup work to get more consistent and complete about what gets package...Leonard Richardson
2022-04-07Omit untrusted input when issuing warnings.Leonard Richardson
2021-12-21Standardized the wording of the MarkupResemblesLocatorWarningLeonard Richardson
2021-12-17Fix a crash when pickling a BeautifulSoup object that has noLeonard Richardson
2021-11-29Do a better job of keeping track of namespaces as an XML document isLeonard Richardson
2021-10-24Issue a warning when an HTML parser is used to parse a document thatLeonard Richardson
2021-10-24Used a warning to formally deprecate the 'text' argument in favor of 'string'.Leonard Richardson
2021-09-07Goodbye, Python 2. [bug=1942919]Leonard Richardson
2021-02-13Corrected the use of special string container classes in cases when aLeonard Richardson
2021-02-13Performance improvement when processing tags that speeds up overallLeonard Richardson
2021-02-13Improve the warning issued when a directory name (as opposed toLeonard Richardson
2020-10-03Prepare for release.Leonard Richardson
2020-09-26Increment version number.Leonard Richardson
2020-09-26Fixed a bug that inconsistently moved elements over when passingLeonard Richardson
2020-09-26Change the signatures for BeautifulSoup.insert_before and insert_afterLeonard Richardson
2020-05-30Fixed a bug that caused too many tags to be popped from the tagLeonard Richardson
2020-05-17Switch entirely to Python 3-style print statements, even in Python 2.Leonard Richardson
2020-05-17Added docstring for BeautifulSoup.new_tag.Leonard Richardson
2020-04-24If you encode a document with a Python-specific encoding likeLeonard Richardson
2020-04-21Added two distinct UserWarning subclasses for warnings issued from the Beauti...Leonard Richardson
2020-04-07Add Script, Stylesheet, and TemplateString to the 'bs4' namespace.Leonard Richardson
2020-04-05Embedded CSS and Javascript is now stored in distinct Stylesheet andLeonard Richardson
2020-03-10Fixed a bug that happened when passing a Unicode filename containingLeonard Richardson
2019-12-24Bumped version number.Leonard Richardson
2019-12-24Minor changes to docstrings.Leonard Richardson
2019-12-24Added docstrings to all public methods in dammit.py.Leonard Richardson
2019-12-20Added docstrings to all methods in __init__.pyLeonard Richardson
2019-10-06Added section on Python 2 sunsetting.Leonard Richardson
2019-09-02Avoid a crash when trying to detect the declared encoding of aLeonard Richardson
2019-08-26It's now possible to override any of the element classes.Leonard Richardson
2019-08-21When instantiating a BeautifulSoup object, it's now possible toLeonard Richardson
2019-07-21Implemented line number tracking for html5lib.Leonard Richardson
2019-07-21Adapt Chris Mayo's code to track line number and position when using html.par...Leonard Richardson
2019-07-16Prep for release.Leonard Richardson
2019-07-07It's now possible to customize the TreeBuilder object by passingLeonard Richardson
2019-01-06Prep for release.Leonard Richardson
2019-01-05Fix for performance with the linkage fix.Isaac Muse
2018-12-31Prep for release.Leonard Richardson
2018-12-30Merging the linkage checker and html5lib fixes by Isaac Muse found in https:/...Leonard Richardson
2018-12-25Ensure html5lib always has valid internal linkageIsaac Muse