python-html2plaintext/README

14 lines
255 B
Plaintext
Raw Permalink Normal View History

2012-11-29 18:24:32 +01:00
html2plaintext
=============
2012-11-29 18:28:49 +01:00
Python module to convert HTML to Plain Text.
2012-11-29 18:24:32 +01:00
Nutshell
--------
2012-11-29 18:28:49 +01:00
Here a simple example to convert plain text:
2012-11-29 18:24:32 +01:00
>> from html2plaintext import html2plaintext
>> html = '<h1>Hello World</h1>'
>> html2plaintext(html)