Metadata-Version: 2.4
Name: textclass-en
Version: 0.1.0
Summary: Extract keywords from English text
Description-Content-Type: text/markdown

# textclass-en
A simple, fast Python library to extract keywords from English text.

## Quick Start
```python
import textclass_en

textclass_en.textclass("The quick brown fox jumped over the lazy dog") # result: ['quick', 'fox', 'jumped']
textclass_en.textclass("The quick brown fox jumped over the lazy dog", max_keywords=10) # result: ['quick', 'fox', 'jumped', 'lazy', 'dog']
textclass_en.textclass("The company 'OpenBrain' is about to go bankrupt because of their newest AI model.") # result: ['company', 'openbrain', 'bankrupt']
textclass_en.textclass("The company 'OpenBrain' is about to go bankrupt because of their newest AI model.", max_keywords=10) # result: ['company', 'openbrain', 'bankrupt', 'newest', 'ai', 'model']
```