class documentation

A generic stand-in for the value of a meta tag's 'content' attribute. When Beautiful Soup parses the markup: <meta http-equiv="content-type" content="text/html; charset=utf8"> The value of the 'content' attribute will be one of these objects.

Method __new__ Undocumented
Method encode Undocumented
Constant CHARSET_RE Undocumented
def __new__(cls, original_value): (source)

Undocumented

def encode(self, encoding): (source)

Undocumented

CHARSET_RE = (source)

Undocumented

Value
re.compile(r'((^|;)\s*charset=)([^;]*)',
           re.M)