python-html2plaintext/README

14 lines
255 B
Plaintext

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)