> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemo/curator/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo/curator/_mcp/server.

# nemo_curator.stages.text.download.html_extractors.justext

## Module Contents

### Classes

| Name                                                                                              | Description |
| ------------------------------------------------------------------------------------------------- | ----------- |
| [`JusTextExtractor`](#nemo_curator-stages-text-download-html_extractors-justext-JusTextExtractor) | -           |

### API

```python
class nemo_curator.stages.text.download.html_extractors.justext.JusTextExtractor(
    length_low: int = 70,
    length_high: int = 200,
    stopwords_low: float = 0.3,
    stopwords_high: float = 0.32,
    max_link_density: float = 0.2,
    max_heading_distance: int = 200,
    no_headings: bool = False,
    is_boilerplate: bool | None = None
)
```

**Bases:** [HTMLExtractorAlgorithm](/nemo-curator/nemo_curator/stages/text/download/html_extractors/base#nemo_curator-stages-text-download-html_extractors-base-HTMLExtractorAlgorithm)

**`_logged_languages`** `set[str] = set()`

---

```python
nemo_curator.stages.text.download.html_extractors.justext.JusTextExtractor.extract_text(
    html: str,
    stop_words: frozenset[str],
    language: str
) -> list[str] | None
```