summaryrefslogtreecommitdiff
path: root/bs4/__init__.py
AgeCommit message (Expand)Author
2013-05-20A NavigableString object now has an immutable '.name' property whoseLeonard Richardson
2013-05-20The .next_element attribute used during parsing was confusingly similar to th...Leonard Richardson
2013-05-20Gave new_string() the ability to create subclasses ofLeonard Richardson
2013-05-07Fixed up diagnose() and added it to the docs.Leonard Richardson
2013-05-07Aliased the BeautifulSoup class to the easier-to-type "_s" and "_soup".Leonard Richardson
2012-08-21Fixed a problem with the html5lib builder not handling comments correctly.Leonard Richardson
2012-08-20Prep for release.Leonard Richardson
2012-08-20Raise a more specific error (FeatureNotFound) when a requestedLeonard Richardson
2012-08-17Prep for release.Leonard Richardson
2012-07-03Prep for release.Leonard Richardson
2012-07-02Fixed a typo that made parsing much slower than it should have been. [bug=102...Leonard Richardson
2012-05-29Prep for release.Leonard Richardson
2012-04-27Prep for release.Leonard Richardson
2012-04-16Prep for release.Leonard Richardson
2012-04-16Give a more useful error when the user tries to run the Python 2 version of B...Leonard Richardson
2012-04-03Prep for release.Leonard Richardson
2012-03-26Prep for release.Leonard Richardson
2012-03-14Bumped version number.Leonard Richardson
2012-03-02Bump version number.Leonard Richardson
2012-03-01For backwards compatibility, brought back the BeautifulStoneSoup class as a d...Leonard Richardson
2012-02-28Fixed the generated XML declaration.Leonard Richardson
2012-02-24Renamed Tag.nsprefix to Tag.prefix, for consistency with NamespacedAttribute.Leonard Richardson
2012-02-23Fixed handling of the closing of namespaced tags.Leonard Richardson
2012-02-23Bumped version number.Leonard Richardson
2012-02-21Have lxml invert namespace maps as they come in and set each tag's prefix app...Leonard Richardson
2012-02-21Added nsprefix argument to the tag class.Leonard Richardson
2012-02-21Merged from trunk.Leonard Richardson
2012-02-20It's now possible to copy a BeautifulSoup object created with the html.parser...Leonard Richardson
2012-02-16It's a start, at least.Leonard Richardson
2012-02-16Prep for release.Leonard Richardson
2012-02-09Bumped version number.Leonard Richardson
2012-02-09As a last-ditch attempt to turn data into Unicode, use errors=replace instead...Leonard Richardson
2012-02-08Renamed move_* back to insert_*Leonard Richardson
2012-02-07Newly created tags use the same empty-element rules as the builder used to or...Leonard Richardson
2012-02-07BeautifulSoup objects don't support move_before() or move_after.Leonard Richardson
2012-02-07Added and tested insert_before and insert_after.Leonard Richardson
2012-02-07Made the formatter something you pass in rather than a variable you set.Leonard Richardson
2012-02-06You can't replace a tag with its parent, or insert a tag into itself. replace...Leonard Richardson
2012-02-02Improved the setup.py.Leonard Richardson
2012-02-01Look for lxml in preference to html5lib.Leonard Richardson
2012-02-01Added tag creation and string generators, both created while writing the docs.Leonard Richardson
2012-01-20Made it easier to convert BS3 code to BS4.Leonard Richardson
2011-08-16Prep for beta release.Leonard Richardson
2011-05-21OK, figured that out.Leonard Richardson
2011-05-21Renamed .next and .previous to .next_element and .previous_element.Leonard Richardson
2011-05-21Reduced the difference between Python 2's __init__.py and Python 3's __init__...Leonard Richardson
2011-05-21got rid of util.py altogether.Leonard Richardson
2011-05-21Got rid of isList utility function.Leonard Richardson
2011-03-05PEP8ifyingAaron DeVore
2011-03-05Modify attributes and implementation to always use underscore_namesAaron DeVore