Metadata-Version: 2.1
Name: plainhtml
Version: 0.1.1
Summary: Extract plain text from HTML
Author: Severin Simmler
Author-email: s.simmler@snapaddy.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: lxml (>=4.6.2,<5.0.0)
Description-Content-Type: text/markdown

# Extract plain text from HTML

## Installation

```
$ pip install plainhtml
```

## Example

```python
>>> import plainhtml
>>> html = "<html><body><p>foo</p><p>bar</p></body></html>"
>>> plainhtml.extract(html)
'foo\n\nbar'
```

