## parse()


Parse HTML and extract text matching a CSS selector.


Usage

``` python
parse(
    html,
    selector="body",
)
```


## Parameters


`html: str`  
Raw HTML string.

`selector: str = ``"body"`  
CSS selector to match.


## Returns


`list of str`  
Extracted text fragments.
