class documentation

class ResultSet(list): (source)

View In Hierarchy

A ResultSet is just a list that keeps track of the SoupStrainer that created it.

Method __getattr__ Raise a helpful exception to explain a common code fix.
Method __init__ Constructor.
Instance Variable source Undocumented
def __getattr__(self, key): (source)

Raise a helpful exception to explain a common code fix.

def __init__(self, source, result=()): (source)

Constructor. :param source: A SoupStrainer. :param result: A list of PageElements.

Undocumented