Go to file
resteve 6acd2b6a5e README 2012-11-29 18:28:49 +01:00
html2plaintext Initial release 2012-11-29 18:24:32 +01:00
CHANGELOG Initial release 2012-11-29 18:24:32 +01:00
COPYRIGHT Initial release 2012-11-29 18:24:32 +01:00
INSTALL Initial release 2012-11-29 18:24:32 +01:00
LICENSE Initial release 2012-11-29 18:24:32 +01:00
MANIFEST.in Initial release 2012-11-29 18:24:32 +01:00
README README 2012-11-29 18:28:49 +01:00
setup.py Initial release 2012-11-29 18:24:32 +01:00
tests.py Initial release 2012-11-29 18:24:32 +01:00

README

html2plaintext
=============

Python module to convert HTML to Plain Text.

Nutshell
--------

Here a simple example to convert plain text:

    >> from html2plaintext import html2plaintext
    >> html = '<h1>Hello World</h1>'
    >> html2plaintext(html)