NAME
   HTML::FormatText::Html2textPY - format HTML as plain text using
   html2text python script

SYNOPSIS
    use HTML::FormatText::Html2textPY;
    $text = HTML::FormatText::Html2textPY->format_file ($filename);
    $text = HTML::FormatText::Html2textPY->format_string ($html_string);

    $formatter = HTML::FormatText::Html2textPY->new;
    $tree = HTML::TreeBuilder->new_from_file ($filename);
    $text = $formatter->format ($tree);

DESCRIPTION
   "HTML::FormatText::Html2textPY" turns HTML into plain text using the
   "html2text" python script.

SEE ALSO
   HTML::FormatText

AUTHOR
   Alex Pavlovic, "[email protected]"

COPYRIGHT
   Copyright (c) 2013 the HTML::FormatText::Html2textPY "AUTHOR" as listed
   above.

LICENSE
   This program is free software, you can redistribute it and/or modify it
   under the same terms as Perl itself.