Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-26 | Clarify installation differences between Python 2 and Python 3. Contributed ↵ | Leonard Richardson | |
by James Lu. | |||
2016-07-26 | Open/close files with "with" | Ville Skyttä | |
2016-05-11 | doc: Mention installation differences between Python 2 and 3 | glolol@overdrivenetworks.com | |
Earlier, someone asked about a Python 3 program not working because the docs told them to install python-bs4, when in reality, python3-bs4 should've been used instead. This hopefully clears up the different package names and commands that should be used by Python 3 users. | |||
2015-11-23 | Fixing typo in example of nth-of-type css selector | Gene Wood | |
2015-09-28 | Don't allow inserting None into a tag. | Leonard Richardson | |
2015-07-05 | Added reference to old 'text' name to documentation. | Leonard Richardson | |
2015-06-28 | Changed the way soup objects work under copy.copy(). Copying a | Leonard Richardson | |
NavigableString or a Tag will give you a new NavigableString that's equal to the old one but not connected to the parse tree. Patch by Martijn Peters. [bug=1307490] | |||
2015-06-28 | Raise a NotImplementedError whenever an unsupported CSS pseudoclass | Leonard Richardson | |
is used in select(). Previously some cases did not result in a NotImplementedError. | |||
2015-06-27 | Added an example of using a fuction on an attribute value/using a function ↵ | Leonard Richardson | |
to invert a normal search. | |||
2015-06-27 | Added an exclude_encodings argument to UnicodeDammit and to the | Leonard Richardson | |
Beautiful Soup constructor, which lets you prohibit the detection of an encoding that you know is wrong. [bug=1469408] | |||
2015-06-25 | Introduced the select_one() method, which uses a CSS selector but | Leonard Richardson | |
only returns the first match, instead of a list of matches. [bug=1349367] | |||
2015-06-25 | The text argument to the find_* methods is now called string, | Leonard Richardson | |
which is more accurate. text still works, but is the argument described in the documentation. text may eventually change its meaning, but not for a very long time. [bug=1366856] | |||
2015-06-25 | You can now create a NavigableString or a subclass just by invoking | Leonard Richardson | |
the constructor. [bug=1294315] | |||
2015-06-25 | Fixed syntax errors in documentation. | Leonard Richardson | |
2015-06-25 | Put the Chinese version of the documentation into its own Sphinx build to ↵ | Leonard Richardson | |
stop identifiers from conflicting. [bug=1401862] | |||
2014-12-10 | Fixed inconsistent markup in documentation. [bug=1273002] | Leonard Richardson | |
2014-12-10 | The select() method now supports selector grouping. Patch by | Leonard Richardson | |
Francisco Canas [bug=1191917] | |||
2014-12-08 | Rephrased the 'you need a parser' section to cover today's more common BS3 ↵ | Leonard Richardson | |
porting environments. [bug=1370364] | |||
2014-12-07 | Mentioned virtual environments as a possible source for the ↵ | Leonard Richardson | |
different-parsers problem. | |||
2014-12-07 | Tweaked the parser warning. | Leonard Richardson | |
2013-12-07 | Added a Chinese translation of the documentation by Delong .w. | Leonard Richardson | |
2013-11-02 | Added link to Japanese user translation. | Leonard Richardson | |
2013-10-28 | Made it as clear as possible the Beautiful Soup does not support any ↵ | Leonard Richardson | |
standardized subset of CSS selector syntax. | |||
2013-10-21 | Clarified docs. | Leonard Richardson | |
2013-10-01 | Fixed a bug in which short Unicode input was improperly encoded to ASCII ↵ | Leonard Richardson | |
when checking whether or not it was a file on disk. [bug=1227016] | |||
2013-08-12 | Prep for release. | Leonard Richardson | |
2013-08-12 | A little cleanup. | Leonard Richardson | |
2013-06-02 | Merged in big encoding-detection refactoring branch. | Leonard Richardson | |
2013-05-20 | Gave new_string() the ability to create subclasses of | Leonard Richardson | |
NavigableString. [bug=1181986] | |||
2013-05-20 | html5lib now supports Python 3. Fixed some Python 2-specific | Leonard Richardson | |
code in the html5lib test suite. [bug=1181624] | |||
2013-05-14 | Added diagnostic case for attempting to parse a URL as HTML. | Leonard Richardson | |
2013-05-14 | Added warning about using NavigableString outside of Beautiful Soup. | Leonard Richardson | |
2013-05-14 | Added a deprecation warning to has_key(). | Leonard Richardson | |
2013-05-09 | Thanks to data-*, there's now a good use for attrs again. This lets me clean ↵ | Leonard Richardson | |
up the docs quite a bit. | |||
2013-05-09 | Added <body> tag to sample doc so it will work the same on all parsers. | Leonard Richardson | |
2013-05-08 | Updated docs with new examples. | Leonard Richardson | |
2013-05-08 | Updated docs with new examples. | Leonard Richardson | |
2013-05-07 | Fixed up diagnose() and added it to the docs. | Leonard Richardson | |
2013-05-07 | Mentioned the CSS selector solution to searching for a tag by multiple CSS ↵ | Leonard Richardson | |
classes. | |||
2013-05-07 | Added support for the "nth-of-type" CSS selector. The CSS selector ">" can ↵ | Leonard Richardson | |
now find a tag by means other than the tag name. Code by Sven Slootweg. | |||
2013-05-06 | Changed Google Groups URL. | Leonard Richardson | |
2013-01-09 | Fixed table. | Leonard Richardson | |
2012-11-03 | Doc fixes. | Leonard Richardson | |
2012-09-28 | Fixed package name. | Leonard Richardson | |
2012-08-17 | Fixed doc. | Leonard Richardson | |
2012-08-17 | Prep for release. | Leonard Richardson | |
2012-08-16 | As per PEP-8, allow searching by CSS class using the 'class_' | Leonard Richardson | |
keyword argument. [bug=1037624] | |||
2012-08-14 | Updated docs. | Leonard Richardson | |
2012-07-10 | Fixed typo. | Leonard Richardson | |
2012-07-03 | Mentioned cchardet in docs. | Leonard Richardson | |